11 changed files with 952 additions and 0 deletions
@ -0,0 +1,63 @@ |
|||||
|
import request from '@/utils/request'; |
||||
|
import { AxiosPromise } from 'axios'; |
||||
|
import { BaiduConfigurationVO, BaiduConfigurationForm, BaiduConfigurationQuery } from '@/api/im/baiduConfiguration/types'; |
||||
|
|
||||
|
/** |
||||
|
* 查询百度翻译配置列表 |
||||
|
* @param query |
||||
|
* @returns {*} |
||||
|
*/ |
||||
|
|
||||
|
export const listBaiduConfiguration = (query?: BaiduConfigurationQuery): AxiosPromise<BaiduConfigurationVO[]> => { |
||||
|
return request({ |
||||
|
url: '/im/baiduConfiguration/list', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}); |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* 查询百度翻译配置详细 |
||||
|
* @param id |
||||
|
*/ |
||||
|
export const getBaiduConfiguration = (id: string | number): AxiosPromise<BaiduConfigurationVO> => { |
||||
|
return request({ |
||||
|
url: '/im/baiduConfiguration/' + id, |
||||
|
method: 'get' |
||||
|
}); |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* 新增百度翻译配置 |
||||
|
* @param data |
||||
|
*/ |
||||
|
export const addBaiduConfiguration = (data: BaiduConfigurationForm) => { |
||||
|
return request({ |
||||
|
url: '/im/baiduConfiguration', |
||||
|
method: 'post', |
||||
|
data: data |
||||
|
}); |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* 修改百度翻译配置 |
||||
|
* @param data |
||||
|
*/ |
||||
|
export const updateBaiduConfiguration = (data: BaiduConfigurationForm) => { |
||||
|
return request({ |
||||
|
url: '/im/baiduConfiguration', |
||||
|
method: 'put', |
||||
|
data: data |
||||
|
}); |
||||
|
}; |
||||
|
|
||||
|
/** |
||||
|
* 删除百度翻译配置 |
||||
|
* @param id |
||||
|
*/ |
||||
|
export const delBaiduConfiguration = (id: string | number | Array<string | number>) => { |
||||
|
return request({ |
||||
|
url: '/im/baiduConfiguration/' + id, |
||||
|
method: 'delete' |
||||
|
}); |
||||
|
}; |
||||
@ -0,0 +1,76 @@ |
|||||
|
export interface BaiduConfigurationVO { |
||||
|
/** |
||||
|
* 主键ID |
||||
|
*/ |
||||
|
id: string | number; |
||||
|
|
||||
|
/** |
||||
|
* appId |
||||
|
*/ |
||||
|
appId: string | number; |
||||
|
|
||||
|
/** |
||||
|
* SECRET_KEY |
||||
|
*/ |
||||
|
secretKey: string; |
||||
|
|
||||
|
/** |
||||
|
* 备注 |
||||
|
*/ |
||||
|
remark: string; |
||||
|
|
||||
|
/** |
||||
|
* 创建时间 |
||||
|
*/ |
||||
|
createdTime: string; |
||||
|
|
||||
|
} |
||||
|
|
||||
|
export interface BaiduConfigurationForm extends BaseEntity { |
||||
|
/** |
||||
|
* 主键ID |
||||
|
*/ |
||||
|
id?: string | number; |
||||
|
|
||||
|
/** |
||||
|
* 唯一token |
||||
|
*/ |
||||
|
uniqueToken?: string; |
||||
|
|
||||
|
/** |
||||
|
* appId |
||||
|
*/ |
||||
|
appId?: string | number; |
||||
|
|
||||
|
/** |
||||
|
* SECRET_KEY |
||||
|
*/ |
||||
|
secretKey?: string; |
||||
|
|
||||
|
/** |
||||
|
* 备注 |
||||
|
*/ |
||||
|
remark?: string; |
||||
|
|
||||
|
} |
||||
|
|
||||
|
export interface BaiduConfigurationQuery extends PageQuery { |
||||
|
|
||||
|
/** |
||||
|
* appId |
||||
|
*/ |
||||
|
appId?: string | number; |
||||
|
|
||||
|
/** |
||||
|
* SECRET_KEY |
||||
|
*/ |
||||
|
secretKey?: string; |
||||
|
|
||||
|
/** |
||||
|
* 日期范围参数 |
||||
|
*/ |
||||
|
params?: any; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
|
||||
@ -0,0 +1,240 @@ |
|||||
|
<template> |
||||
|
<div class="p-2"> |
||||
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave"> |
||||
|
<div v-show="showSearch" class="mb-[10px]"> |
||||
|
<el-card shadow="hover"> |
||||
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true"> |
||||
|
<el-form-item label="appId" prop="appId"> |
||||
|
<el-input v-model="queryParams.appId" placeholder="请输入appId" clearable @keyup.enter="handleQuery" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="密钥" prop="secretKey"> |
||||
|
<el-input v-model="queryParams.secretKey" placeholder="请输入密钥" clearable @keyup.enter="handleQuery" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item> |
||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button> |
||||
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
</el-card> |
||||
|
</div> |
||||
|
</transition> |
||||
|
|
||||
|
<el-card shadow="never"> |
||||
|
<template #header> |
||||
|
<el-row :gutter="10" class="mb8"> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button v-hasPermi="['im:baiduConfiguration:add']" type="primary" plain icon="Plus" @click="handleAdd">新增</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button v-hasPermi="['im:baiduConfiguration:edit']" type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" |
||||
|
>修改</el-button |
||||
|
> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button v-hasPermi="['im:baiduConfiguration:remove']" type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" |
||||
|
>删除</el-button |
||||
|
> |
||||
|
</el-col> |
||||
|
<right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar> |
||||
|
</el-row> |
||||
|
</template> |
||||
|
|
||||
|
<el-table v-loading="loading" :data="baiduConfigurationList" @selection-change="handleSelectionChange"> |
||||
|
<el-table-column type="selection" width="55" align="center" /> |
||||
|
<!-- <el-table-column label="主键ID" align="center" prop="id" v-if="true" /> --> |
||||
|
<el-table-column label="appId" align="center" prop="appId" /> |
||||
|
<el-table-column label="密钥" align="center" prop="secretKey" /> |
||||
|
<el-table-column label="备注" align="center" prop="remark" /> |
||||
|
<el-table-column label="创建时间" align="center" prop="createdTime" width="180"> |
||||
|
<template #default="scope"> |
||||
|
<span>{{ parseTime(scope.row.createdTime, '{y}-{m}-{d}') }}</span> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
||||
|
<template #default="scope"> |
||||
|
<el-tooltip content="修改" placement="top"> |
||||
|
<el-button v-hasPermi="['im:baiduConfiguration:edit']" link type="primary" icon="Edit" @click="handleUpdate(scope.row)"></el-button> |
||||
|
</el-tooltip> |
||||
|
<el-tooltip content="删除" placement="top"> |
||||
|
<el-button v-hasPermi="['im:baiduConfiguration:remove']" link type="primary" icon="Delete" @click="handleDelete(scope.row)"></el-button> |
||||
|
</el-tooltip> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
|
||||
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" /> |
||||
|
</el-card> |
||||
|
<!-- 添加或修改百度翻译配置对话框 --> |
||||
|
<el-dialog v-model="dialog.visible" :title="dialog.title" width="500px" append-to-body> |
||||
|
<el-form ref="baiduConfigurationFormRef" :model="form" :rules="rules" label-width="80px"> |
||||
|
<el-form-item label="appId" prop="appId"> |
||||
|
<el-input v-model="form.appId" placeholder="请输入appId" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="密钥" prop="secretKey"> |
||||
|
<el-input v-model="form.secretKey" placeholder="请输入密钥" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="备注" prop="remark"> |
||||
|
<el-input v-model="form.remark" placeholder="请输入备注" /> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<template #footer> |
||||
|
<div class="dialog-footer"> |
||||
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button> |
||||
|
<el-button @click="cancel">取 消</el-button> |
||||
|
</div> |
||||
|
</template> |
||||
|
</el-dialog> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script setup name="BaiduConfiguration" lang="ts"> |
||||
|
import { |
||||
|
listBaiduConfiguration, |
||||
|
getBaiduConfiguration, |
||||
|
delBaiduConfiguration, |
||||
|
addBaiduConfiguration, |
||||
|
updateBaiduConfiguration |
||||
|
} from '@/api/im/baiduConfiguration'; |
||||
|
import { BaiduConfigurationVO, BaiduConfigurationQuery, BaiduConfigurationForm } from '@/api/im/baiduConfiguration/types'; |
||||
|
|
||||
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance; |
||||
|
|
||||
|
const baiduConfigurationList = ref<BaiduConfigurationVO[]>([]); |
||||
|
const buttonLoading = ref(false); |
||||
|
const loading = ref(true); |
||||
|
const showSearch = ref(true); |
||||
|
const ids = ref<Array<string | number>>([]); |
||||
|
const single = ref(true); |
||||
|
const multiple = ref(true); |
||||
|
const total = ref(0); |
||||
|
|
||||
|
const queryFormRef = ref<ElFormInstance>(); |
||||
|
const baiduConfigurationFormRef = ref<ElFormInstance>(); |
||||
|
|
||||
|
const dialog = reactive<DialogOption>({ |
||||
|
visible: false, |
||||
|
title: '' |
||||
|
}); |
||||
|
|
||||
|
const initFormData: BaiduConfigurationForm = { |
||||
|
id: undefined, |
||||
|
appId: undefined, |
||||
|
secretKey: undefined, |
||||
|
remark: undefined |
||||
|
}; |
||||
|
const data = reactive<PageData<BaiduConfigurationForm, BaiduConfigurationQuery>>({ |
||||
|
form: { ...initFormData }, |
||||
|
queryParams: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
appId: undefined, |
||||
|
secretKey: undefined, |
||||
|
params: {} |
||||
|
}, |
||||
|
rules: { |
||||
|
id: [{ required: true, message: '主键ID不能为空', trigger: 'blur' }], |
||||
|
appId: [{ required: true, message: 'appId不能为空', trigger: 'blur' }], |
||||
|
secretKey: [{ required: true, message: '密钥不能为空', trigger: 'blur' }] |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
const { queryParams, form, rules } = toRefs(data); |
||||
|
|
||||
|
/** 查询百度翻译配置列表 */ |
||||
|
const getList = async () => { |
||||
|
loading.value = true; |
||||
|
const res = await listBaiduConfiguration(queryParams.value); |
||||
|
baiduConfigurationList.value = res.rows; |
||||
|
total.value = res.total; |
||||
|
loading.value = false; |
||||
|
}; |
||||
|
|
||||
|
/** 取消按钮 */ |
||||
|
const cancel = () => { |
||||
|
reset(); |
||||
|
dialog.visible = false; |
||||
|
}; |
||||
|
|
||||
|
/** 表单重置 */ |
||||
|
const reset = () => { |
||||
|
form.value = { ...initFormData }; |
||||
|
baiduConfigurationFormRef.value?.resetFields(); |
||||
|
}; |
||||
|
|
||||
|
/** 搜索按钮操作 */ |
||||
|
const handleQuery = () => { |
||||
|
queryParams.value.pageNum = 1; |
||||
|
getList(); |
||||
|
}; |
||||
|
|
||||
|
/** 重置按钮操作 */ |
||||
|
const resetQuery = () => { |
||||
|
queryFormRef.value?.resetFields(); |
||||
|
handleQuery(); |
||||
|
}; |
||||
|
|
||||
|
/** 多选框选中数据 */ |
||||
|
const handleSelectionChange = (selection: BaiduConfigurationVO[]) => { |
||||
|
ids.value = selection.map((item) => item.id); |
||||
|
single.value = selection.length != 1; |
||||
|
multiple.value = !selection.length; |
||||
|
}; |
||||
|
|
||||
|
/** 新增按钮操作 */ |
||||
|
const handleAdd = () => { |
||||
|
reset(); |
||||
|
dialog.visible = true; |
||||
|
dialog.title = '添加百度翻译配置'; |
||||
|
}; |
||||
|
|
||||
|
/** 修改按钮操作 */ |
||||
|
const handleUpdate = async (row?: BaiduConfigurationVO) => { |
||||
|
reset(); |
||||
|
const _id = row?.id || ids.value[0]; |
||||
|
const res = await getBaiduConfiguration(_id); |
||||
|
Object.assign(form.value, res.data); |
||||
|
dialog.visible = true; |
||||
|
dialog.title = '修改百度翻译配置'; |
||||
|
}; |
||||
|
|
||||
|
/** 提交按钮 */ |
||||
|
const submitForm = () => { |
||||
|
baiduConfigurationFormRef.value?.validate(async (valid: boolean) => { |
||||
|
if (valid) { |
||||
|
buttonLoading.value = true; |
||||
|
if (form.value.id) { |
||||
|
await updateBaiduConfiguration(form.value).finally(() => (buttonLoading.value = false)); |
||||
|
} else { |
||||
|
await addBaiduConfiguration(form.value).finally(() => (buttonLoading.value = false)); |
||||
|
} |
||||
|
proxy?.$modal.msgSuccess('操作成功'); |
||||
|
dialog.visible = false; |
||||
|
await getList(); |
||||
|
} |
||||
|
}); |
||||
|
}; |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (row?: BaiduConfigurationVO) => { |
||||
|
const _ids = row?.id || ids.value; |
||||
|
await proxy?.$modal.confirm('是否确认删除百度翻译配置编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false)); |
||||
|
await delBaiduConfiguration(_ids); |
||||
|
proxy?.$modal.msgSuccess('删除成功'); |
||||
|
await getList(); |
||||
|
}; |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const handleExport = () => { |
||||
|
proxy?.download( |
||||
|
'im/baiduConfiguration/export', |
||||
|
{ |
||||
|
...queryParams.value |
||||
|
}, |
||||
|
`baiduConfiguration_${new Date().getTime()}.xlsx` |
||||
|
); |
||||
|
}; |
||||
|
|
||||
|
onMounted(() => { |
||||
|
getList(); |
||||
|
}); |
||||
|
</script> |
||||
@ -0,0 +1,105 @@ |
|||||
|
package org.dromara.im.controller; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
import lombok.RequiredArgsConstructor; |
||||
|
import jakarta.servlet.http.HttpServletResponse; |
||||
|
import jakarta.validation.constraints.*; |
||||
|
import cn.dev33.satoken.annotation.SaCheckPermission; |
||||
|
import org.springframework.web.bind.annotation.*; |
||||
|
import org.springframework.validation.annotation.Validated; |
||||
|
import org.dromara.common.idempotent.annotation.RepeatSubmit; |
||||
|
import org.dromara.common.log.annotation.Log; |
||||
|
import org.dromara.common.web.core.BaseController; |
||||
|
import org.dromara.common.mybatis.core.page.PageQuery; |
||||
|
import org.dromara.common.core.domain.R; |
||||
|
import org.dromara.common.core.validate.AddGroup; |
||||
|
import org.dromara.common.core.validate.EditGroup; |
||||
|
import org.dromara.common.log.enums.BusinessType; |
||||
|
import org.dromara.common.excel.utils.ExcelUtil; |
||||
|
import org.dromara.im.domain.vo.ImBaiduConfigurationVo; |
||||
|
import org.dromara.im.domain.bo.ImBaiduConfigurationBo; |
||||
|
import org.dromara.im.service.IImBaiduConfigurationService; |
||||
|
import org.dromara.common.mybatis.core.page.TableDataInfo; |
||||
|
|
||||
|
/** |
||||
|
* 百度翻译配置 |
||||
|
* |
||||
|
* @author Blue |
||||
|
* @date 2026-04-21 |
||||
|
*/ |
||||
|
@Validated |
||||
|
@RequiredArgsConstructor |
||||
|
@RestController |
||||
|
@RequestMapping("/im/baiduConfiguration") |
||||
|
public class ImBaiduConfigurationController extends BaseController { |
||||
|
|
||||
|
private final IImBaiduConfigurationService imBaiduConfigurationService; |
||||
|
|
||||
|
/** |
||||
|
* 查询百度翻译配置列表 |
||||
|
*/ |
||||
|
@SaCheckPermission("im:baiduConfiguration:list") |
||||
|
@GetMapping("/list") |
||||
|
public TableDataInfo<ImBaiduConfigurationVo> list(ImBaiduConfigurationBo bo, PageQuery pageQuery) { |
||||
|
return imBaiduConfigurationService.queryPageList(bo, pageQuery); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 导出百度翻译配置列表 |
||||
|
*/ |
||||
|
@SaCheckPermission("im:baiduConfiguration:export") |
||||
|
@Log(title = "百度翻译配置", businessType = BusinessType.EXPORT) |
||||
|
//@PostMapping("/export")
|
||||
|
public void export(ImBaiduConfigurationBo bo, HttpServletResponse response) { |
||||
|
List<ImBaiduConfigurationVo> list = imBaiduConfigurationService.queryList(bo); |
||||
|
ExcelUtil.exportExcel(list, "百度翻译配置", ImBaiduConfigurationVo.class, response); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 获取百度翻译配置详细信息 |
||||
|
* |
||||
|
* @param id 主键 |
||||
|
*/ |
||||
|
@SaCheckPermission("im:baiduConfiguration:query") |
||||
|
@GetMapping("/{id}") |
||||
|
public R<ImBaiduConfigurationVo> getInfo(@NotNull(message = "主键不能为空") |
||||
|
@PathVariable Long id) { |
||||
|
return R.ok(imBaiduConfigurationService.queryById(id)); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 新增百度翻译配置 |
||||
|
*/ |
||||
|
@SaCheckPermission("im:baiduConfiguration:add") |
||||
|
@Log(title = "百度翻译配置", businessType = BusinessType.INSERT) |
||||
|
@RepeatSubmit() |
||||
|
@PostMapping() |
||||
|
public R<Void> add(@Validated(AddGroup.class) @RequestBody ImBaiduConfigurationBo bo) { |
||||
|
return toAjax(imBaiduConfigurationService.insertByBo(bo)); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 修改百度翻译配置 |
||||
|
*/ |
||||
|
@SaCheckPermission("im:baiduConfiguration:edit") |
||||
|
@Log(title = "百度翻译配置", businessType = BusinessType.UPDATE) |
||||
|
@RepeatSubmit() |
||||
|
@PutMapping() |
||||
|
public R<Void> edit(@Validated(EditGroup.class) @RequestBody ImBaiduConfigurationBo bo) { |
||||
|
return toAjax(imBaiduConfigurationService.updateByBo(bo)); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 删除百度翻译配置 |
||||
|
* |
||||
|
* @param ids 主键串 |
||||
|
*/ |
||||
|
@SaCheckPermission("im:baiduConfiguration:remove") |
||||
|
@Log(title = "百度翻译配置", businessType = BusinessType.DELETE) |
||||
|
@DeleteMapping("/{ids}") |
||||
|
public R<Void> remove(@NotEmpty(message = "主键不能为空") |
||||
|
@PathVariable Long[] ids) { |
||||
|
return toAjax(imBaiduConfigurationService.deleteWithValidByIds(List.of(ids), true)); |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,69 @@ |
|||||
|
package org.dromara.im.domain; |
||||
|
|
||||
|
import com.fhs.core.trans.vo.TransPojo; |
||||
|
import org.dromara.common.mybatis.core.domain.BaseEntity; |
||||
|
import com.baomidou.mybatisplus.annotation.*; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
import java.util.Date; |
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
|
||||
|
import java.io.Serial; |
||||
|
|
||||
|
/** |
||||
|
* 百度翻译配置对象 im_baidu_configuration |
||||
|
* |
||||
|
* @author Blue |
||||
|
* @date 2026-04-21 |
||||
|
*/ |
||||
|
@Data |
||||
|
@TableName("im_baidu_configuration") |
||||
|
public class ImBaiduConfiguration implements TransPojo { |
||||
|
/** |
||||
|
* 主键ID |
||||
|
*/ |
||||
|
@TableId(value = "id") |
||||
|
private Long id; |
||||
|
|
||||
|
/** |
||||
|
* 唯一token |
||||
|
*/ |
||||
|
private String uniqueToken; |
||||
|
|
||||
|
/** |
||||
|
* appId |
||||
|
*/ |
||||
|
private String appId; |
||||
|
|
||||
|
/** |
||||
|
* SECRET_KEY |
||||
|
*/ |
||||
|
private String secretKey; |
||||
|
|
||||
|
/** |
||||
|
* 备注 |
||||
|
*/ |
||||
|
private String remark; |
||||
|
|
||||
|
/** |
||||
|
* 创建时间 |
||||
|
*/ |
||||
|
private Date createdTime; |
||||
|
|
||||
|
/** |
||||
|
* 更新时间 |
||||
|
*/ |
||||
|
private Date updatedTime; |
||||
|
|
||||
|
/** |
||||
|
* 创建者ID |
||||
|
*/ |
||||
|
private Long creatorId; |
||||
|
|
||||
|
/** |
||||
|
* 更新者ID |
||||
|
*/ |
||||
|
private Long updaterId; |
||||
|
|
||||
|
|
||||
|
} |
||||
@ -0,0 +1,50 @@ |
|||||
|
package org.dromara.im.domain.bo; |
||||
|
|
||||
|
import org.dromara.im.domain.ImBaiduConfiguration; |
||||
|
import org.dromara.common.mybatis.core.domain.BaseEntity; |
||||
|
import org.dromara.common.core.validate.AddGroup; |
||||
|
import org.dromara.common.core.validate.EditGroup; |
||||
|
import io.github.linpeilie.annotations.AutoMapper; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
import jakarta.validation.constraints.*; |
||||
|
import java.util.Date; |
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
|
||||
|
/** |
||||
|
* 百度翻译配置业务对象 im_baidu_configuration |
||||
|
* |
||||
|
* @author Blue |
||||
|
* @date 2026-04-21 |
||||
|
*/ |
||||
|
@Data |
||||
|
@EqualsAndHashCode(callSuper = true) |
||||
|
@AutoMapper(target = ImBaiduConfiguration.class, reverseConvertGenerate = false) |
||||
|
public class ImBaiduConfigurationBo extends BaseEntity { |
||||
|
|
||||
|
/** |
||||
|
* 主键ID |
||||
|
*/ |
||||
|
@NotNull(message = "主键ID不能为空", groups = { EditGroup.class }) |
||||
|
private Long id; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* appId |
||||
|
*/ |
||||
|
@NotBlank(message = "appId不能为空", groups = { AddGroup.class, EditGroup.class }) |
||||
|
private String appId; |
||||
|
|
||||
|
/** |
||||
|
* SECRET_KEY |
||||
|
*/ |
||||
|
@NotBlank(message = "SECRET_KEY不能为空", groups = { AddGroup.class, EditGroup.class }) |
||||
|
private String secretKey; |
||||
|
|
||||
|
/** |
||||
|
* 备注 |
||||
|
*/ |
||||
|
private String remark; |
||||
|
|
||||
|
|
||||
|
} |
||||
@ -0,0 +1,64 @@ |
|||||
|
package org.dromara.im.domain.vo; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import org.dromara.im.domain.ImBaiduConfiguration; |
||||
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||
|
import org.dromara.common.excel.annotation.ExcelDictFormat; |
||||
|
import org.dromara.common.excel.convert.ExcelDictConvert; |
||||
|
import io.github.linpeilie.annotations.AutoMapper; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serial; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 百度翻译配置视图对象 im_baidu_configuration |
||||
|
* |
||||
|
* @author Blue |
||||
|
* @date 2026-04-21 |
||||
|
*/ |
||||
|
@Data |
||||
|
@ExcelIgnoreUnannotated |
||||
|
@AutoMapper(target = ImBaiduConfiguration.class) |
||||
|
public class ImBaiduConfigurationVo implements Serializable { |
||||
|
|
||||
|
@Serial |
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 主键ID |
||||
|
*/ |
||||
|
@ExcelProperty(value = "主键ID") |
||||
|
private Long id; |
||||
|
|
||||
|
/** |
||||
|
* appId |
||||
|
*/ |
||||
|
@ExcelProperty(value = "appId") |
||||
|
private String appId; |
||||
|
|
||||
|
/** |
||||
|
* SECRET_KEY |
||||
|
*/ |
||||
|
@ExcelProperty(value = "SECRET_KEY") |
||||
|
private String secretKey; |
||||
|
|
||||
|
/** |
||||
|
* 备注 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "备注") |
||||
|
private String remark; |
||||
|
|
||||
|
/** |
||||
|
* 创建时间 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "创建时间") |
||||
|
private Date createdTime; |
||||
|
|
||||
|
|
||||
|
} |
||||
@ -0,0 +1,15 @@ |
|||||
|
package org.dromara.im.mapper; |
||||
|
|
||||
|
import org.dromara.im.domain.ImBaiduConfiguration; |
||||
|
import org.dromara.im.domain.vo.ImBaiduConfigurationVo; |
||||
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
||||
|
|
||||
|
/** |
||||
|
* 百度翻译配置Mapper接口 |
||||
|
* |
||||
|
* @author Blue |
||||
|
* @date 2026-04-21 |
||||
|
*/ |
||||
|
public interface ImBaiduConfigurationMapper extends BaseMapperPlus<ImBaiduConfiguration, ImBaiduConfigurationVo> { |
||||
|
|
||||
|
} |
||||
@ -0,0 +1,68 @@ |
|||||
|
package org.dromara.im.service; |
||||
|
|
||||
|
import org.dromara.im.domain.vo.ImBaiduConfigurationVo; |
||||
|
import org.dromara.im.domain.bo.ImBaiduConfigurationBo; |
||||
|
import org.dromara.common.mybatis.core.page.TableDataInfo; |
||||
|
import org.dromara.common.mybatis.core.page.PageQuery; |
||||
|
|
||||
|
import java.util.Collection; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* 百度翻译配置Service接口 |
||||
|
* |
||||
|
* @author Blue |
||||
|
* @date 2026-04-21 |
||||
|
*/ |
||||
|
public interface IImBaiduConfigurationService { |
||||
|
|
||||
|
/** |
||||
|
* 查询百度翻译配置 |
||||
|
* |
||||
|
* @param id 主键 |
||||
|
* @return 百度翻译配置 |
||||
|
*/ |
||||
|
ImBaiduConfigurationVo queryById(Long id); |
||||
|
|
||||
|
/** |
||||
|
* 分页查询百度翻译配置列表 |
||||
|
* |
||||
|
* @param bo 查询条件 |
||||
|
* @param pageQuery 分页参数 |
||||
|
* @return 百度翻译配置分页列表 |
||||
|
*/ |
||||
|
TableDataInfo<ImBaiduConfigurationVo> queryPageList(ImBaiduConfigurationBo bo, PageQuery pageQuery); |
||||
|
|
||||
|
/** |
||||
|
* 查询符合条件的百度翻译配置列表 |
||||
|
* |
||||
|
* @param bo 查询条件 |
||||
|
* @return 百度翻译配置列表 |
||||
|
*/ |
||||
|
List<ImBaiduConfigurationVo> queryList(ImBaiduConfigurationBo bo); |
||||
|
|
||||
|
/** |
||||
|
* 新增百度翻译配置 |
||||
|
* |
||||
|
* @param bo 百度翻译配置 |
||||
|
* @return 是否新增成功 |
||||
|
*/ |
||||
|
Boolean insertByBo(ImBaiduConfigurationBo bo); |
||||
|
|
||||
|
/** |
||||
|
* 修改百度翻译配置 |
||||
|
* |
||||
|
* @param bo 百度翻译配置 |
||||
|
* @return 是否修改成功 |
||||
|
*/ |
||||
|
Boolean updateByBo(ImBaiduConfigurationBo bo); |
||||
|
|
||||
|
/** |
||||
|
* 校验并批量删除百度翻译配置信息 |
||||
|
* |
||||
|
* @param ids 待删除的主键集合 |
||||
|
* @param isValid 是否进行有效性校验 |
||||
|
* @return 是否删除成功 |
||||
|
*/ |
||||
|
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid); |
||||
|
} |
||||
@ -0,0 +1,195 @@ |
|||||
|
package org.dromara.im.service.impl; |
||||
|
|
||||
|
import cn.hutool.core.date.DateUtil; |
||||
|
import com.baomidou.dynamic.datasource.annotation.DS; |
||||
|
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper; |
||||
|
import org.dromara.common.core.utils.MapstructUtils; |
||||
|
import org.dromara.common.core.utils.StringUtils; |
||||
|
import org.dromara.common.mybatis.core.page.TableDataInfo; |
||||
|
import org.dromara.common.mybatis.core.page.PageQuery; |
||||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
||||
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
|
import lombok.RequiredArgsConstructor; |
||||
|
import org.dromara.common.satoken.utils.LoginHelper; |
||||
|
import org.dromara.im.constant.ImConstant; |
||||
|
import org.dromara.im.domain.ImBaiduConfiguration; |
||||
|
import org.dromara.im.service.IImAgentService; |
||||
|
import org.dromara.im.util.LambdaQueryWrapperHelper; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
import org.dromara.im.domain.bo.ImBaiduConfigurationBo; |
||||
|
import org.dromara.im.domain.vo.ImBaiduConfigurationVo; |
||||
|
import org.dromara.im.domain.ImBaiduConfiguration; |
||||
|
import org.dromara.im.mapper.ImBaiduConfigurationMapper; |
||||
|
import org.dromara.im.service.IImBaiduConfigurationService; |
||||
|
|
||||
|
import java.util.List; |
||||
|
import java.util.Map; |
||||
|
import java.util.Collection; |
||||
|
|
||||
|
/** |
||||
|
* 百度翻译配置Service业务层处理 |
||||
|
* |
||||
|
* @author Blue |
||||
|
* @date 2026-04-21 |
||||
|
*/ |
||||
|
@RequiredArgsConstructor |
||||
|
@Service |
||||
|
@DS(ImConstant.DS_IM_PLATFORM) |
||||
|
public class ImBaiduConfigurationServiceImpl implements IImBaiduConfigurationService { |
||||
|
|
||||
|
private final ImBaiduConfigurationMapper baseMapper; |
||||
|
|
||||
|
private final IImAgentService imAgentService; |
||||
|
/** |
||||
|
* 查询百度翻译配置 |
||||
|
* |
||||
|
* @param id 主键 |
||||
|
* @return 百度翻译配置 |
||||
|
*/ |
||||
|
@Override |
||||
|
public ImBaiduConfigurationVo queryById(Long id){ |
||||
|
LambdaQueryWrapper<ImBaiduConfiguration> lqw = Wrappers.lambdaQuery(); |
||||
|
lqw.eq(ImBaiduConfiguration::getId, id); |
||||
|
|
||||
|
if(!LoginHelper.isSuperAdmin()) { |
||||
|
LambdaQueryWrapperHelper.appendToken(lqw, ImBaiduConfiguration::getUniqueToken); |
||||
|
} |
||||
|
|
||||
|
return baseMapper.selectVoOne(lqw); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 分页查询百度翻译配置列表 |
||||
|
* |
||||
|
* @param bo 查询条件 |
||||
|
* @param pageQuery 分页参数 |
||||
|
* @return 百度翻译配置分页列表 |
||||
|
*/ |
||||
|
@Override |
||||
|
public TableDataInfo<ImBaiduConfigurationVo> queryPageList(ImBaiduConfigurationBo bo, PageQuery pageQuery) { |
||||
|
LambdaQueryWrapper<ImBaiduConfiguration> lqw = buildQueryWrapper(bo); |
||||
|
Page<ImBaiduConfigurationVo> result = baseMapper.selectVoPage(pageQuery.build(), lqw); |
||||
|
return TableDataInfo.build(result); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 查询符合条件的百度翻译配置列表 |
||||
|
* |
||||
|
* @param bo 查询条件 |
||||
|
* @return 百度翻译配置列表 |
||||
|
*/ |
||||
|
@Override |
||||
|
public List<ImBaiduConfigurationVo> queryList(ImBaiduConfigurationBo bo) { |
||||
|
LambdaQueryWrapper<ImBaiduConfiguration> lqw = buildQueryWrapper(bo); |
||||
|
return baseMapper.selectVoList(lqw); |
||||
|
} |
||||
|
|
||||
|
private LambdaQueryWrapper<ImBaiduConfiguration> buildQueryWrapper(ImBaiduConfigurationBo bo) { |
||||
|
Map<String, Object> params = bo.getParams(); |
||||
|
LambdaQueryWrapper<ImBaiduConfiguration> lqw = Wrappers.lambdaQuery(); |
||||
|
lqw.like(StringUtils.isNotBlank(bo.getAppId()), ImBaiduConfiguration::getAppId, bo.getAppId()); |
||||
|
lqw.like(StringUtils.isNotBlank(bo.getSecretKey()), ImBaiduConfiguration::getSecretKey, bo.getSecretKey()); |
||||
|
|
||||
|
if(!LoginHelper.isSuperAdmin()) { |
||||
|
LambdaQueryWrapperHelper.appendToken(lqw, ImBaiduConfiguration::getUniqueToken); |
||||
|
} |
||||
|
|
||||
|
return lqw; |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 新增百度翻译配置 |
||||
|
* |
||||
|
* @param bo 百度翻译配置 |
||||
|
* @return 是否新增成功 |
||||
|
*/ |
||||
|
@Override |
||||
|
public Boolean insertByBo(ImBaiduConfigurationBo bo) { |
||||
|
ImBaiduConfiguration add = MapstructUtils.convert(bo, ImBaiduConfiguration.class); |
||||
|
|
||||
|
if (add == null) { |
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
add.setCreatorId(LoginHelper.getUserId()); |
||||
|
add.setCreatedTime(DateUtil.date()); |
||||
|
add.setUpdaterId(LoginHelper.getUserId()); |
||||
|
add.setUpdatedTime(DateUtil.date()); |
||||
|
|
||||
|
// 如果不是超级管理员,则设置 uniqueToken
|
||||
|
if(!LoginHelper.isSuperAdmin()) { |
||||
|
add.setUniqueToken(imAgentService.getTokenByUserId()); |
||||
|
} |
||||
|
|
||||
|
validEntityBeforeSave(add); |
||||
|
boolean flag = baseMapper.insert(add) > 0; |
||||
|
if (flag) { |
||||
|
bo.setId(add.getId()); |
||||
|
} |
||||
|
return flag; |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 修改百度翻译配置 |
||||
|
* |
||||
|
* @param bo 百度翻译配置 |
||||
|
* @return 是否修改成功 |
||||
|
*/ |
||||
|
@Override |
||||
|
public Boolean updateByBo(ImBaiduConfigurationBo bo) { |
||||
|
ImBaiduConfiguration update = MapstructUtils.convert(bo, ImBaiduConfiguration.class); |
||||
|
if (update == null) { |
||||
|
return false; |
||||
|
} |
||||
|
LambdaUpdateWrapper<ImBaiduConfiguration> updateWrapper = new LambdaUpdateWrapper<>(); |
||||
|
updateWrapper.eq(ImBaiduConfiguration::getId, update.getId()); |
||||
|
|
||||
|
if(!LoginHelper.isSuperAdmin()) { |
||||
|
// 使用当前用户的 token 而不是从 bo 中获取,防止篡改
|
||||
|
updateWrapper.eq(ImBaiduConfiguration::getUniqueToken, imAgentService.getTokenByUserId()); |
||||
|
} |
||||
|
|
||||
|
updateWrapper.set(ImBaiduConfiguration::getAppId, update.getAppId()); |
||||
|
updateWrapper.set(ImBaiduConfiguration::getSecretKey, update.getSecretKey()); |
||||
|
updateWrapper.set(ImBaiduConfiguration::getRemark, update.getRemark()); |
||||
|
|
||||
|
updateWrapper.set(ImBaiduConfiguration::getUpdaterId, LoginHelper.getUserId()); |
||||
|
updateWrapper.set(ImBaiduConfiguration::getUpdatedTime, DateUtil.date()); |
||||
|
|
||||
|
return baseMapper.update(null, updateWrapper) > 0; |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 保存前的数据校验 |
||||
|
*/ |
||||
|
private void validEntityBeforeSave(ImBaiduConfiguration entity){ |
||||
|
//TODO 做一些数据校验,如唯一约束
|
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 校验并批量删除百度翻译配置信息 |
||||
|
* |
||||
|
* @param ids 待删除的主键集合 |
||||
|
* @param isValid 是否进行有效性校验 |
||||
|
* @return 是否删除成功 |
||||
|
*/ |
||||
|
@Override |
||||
|
public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) { |
||||
|
if(isValid){ |
||||
|
if (ids == null || ids.isEmpty()) { |
||||
|
return false; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
LambdaUpdateWrapper<ImBaiduConfiguration> updateWrapper = new LambdaUpdateWrapper<>(); |
||||
|
updateWrapper.in(ImBaiduConfiguration::getId, ids); |
||||
|
|
||||
|
if(!LoginHelper.isSuperAdmin()) { |
||||
|
// 添加 uniqueToken 条件,确保只能删除当前用户的记录
|
||||
|
updateWrapper.eq(ImBaiduConfiguration::getUniqueToken, imAgentService.getTokenByUserId()); |
||||
|
} |
||||
|
|
||||
|
return baseMapper.delete(updateWrapper) > 0; |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,7 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8" ?> |
||||
|
<!DOCTYPE mapper |
||||
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
||||
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
|
<mapper namespace="org.dromara.im.mapper.ImBaiduConfigurationMapper"> |
||||
|
|
||||
|
</mapper> |
||||
Loading…
Reference in new issue