diff --git a/ant-design-vue-jeecg/src/components/dict/JDictSelectTag.vue b/ant-design-vue-jeecg/src/components/dict/JDictSelectTag.vue index 50718fe..b332def 100644 --- a/ant-design-vue-jeecg/src/components/dict/JDictSelectTag.vue +++ b/ant-design-vue-jeecg/src/components/dict/JDictSelectTag.vue @@ -103,7 +103,7 @@ }else{ val = e } - console.log(val); + console.log('JDictSelectTag选中的实际数据: ',val); this.$emit('change', val); }, setCurrentDictOptions(dictOptions){ diff --git a/ant-design-vue-jeecg/src/components/dict/JMultiSelectTag.vue b/ant-design-vue-jeecg/src/components/dict/JMultiSelectTag.vue index 94539ff..7ff2af4 100644 --- a/ant-design-vue-jeecg/src/components/dict/JMultiSelectTag.vue +++ b/ant-design-vue-jeecg/src/components/dict/JMultiSelectTag.vue @@ -101,6 +101,7 @@ export default { } }, onChange(selectedValue) { + console.log('JMultiSelectTag 选中的实际数据: ',selectedValue) this.$emit('change', selectedValue.join(this.spliter)) }, setCurrentDictOptions(dictOptions) { diff --git a/ant-design-vue-jeecg/src/mixins/JeecgListMixin.js b/ant-design-vue-jeecg/src/mixins/JeecgListMixin.js index d92272e..38b8b8f 100644 --- a/ant-design-vue-jeecg/src/mixins/JeecgListMixin.js +++ b/ant-design-vue-jeecg/src/mixins/JeecgListMixin.js @@ -276,9 +276,9 @@ export const JeecgListMixin = { }, fuzhi: function(record){ record.id='' - record.functionName=record.functionName+1 - record.functionEnName=record.functionEnName+1 - record.functionCode=record.functionCode+1 + record.functionName1=record.functionName+1 + record.functionEnName1=record.functionEnName+1 + record.functionCode1=record.functionCode+1 this.$refs.modalForm.edit(record); this.$refs.modalForm.title = "复制"; this.$refs.modalForm.disableSubmit = false; diff --git a/ant-design-vue-jeecg/src/utils/util.js b/ant-design-vue-jeecg/src/utils/util.js index 8edfa68..863638b 100644 --- a/ant-design-vue-jeecg/src/utils/util.js +++ b/ant-design-vue-jeecg/src/utils/util.js @@ -180,10 +180,10 @@ function generateChildRouters(data) { } //--update-end----author:scott---date:20190320------for:根据后台菜单配置,判断是否路由菜单字段,动态选择是否生成路由(为了支持参数URL菜单)------ } - console.log(routers, '生成路由列表 ') - routers.forEach((res, index) => { - console.log(res.path) - }) + //console.log('生成路由列表 ', routers) + // routers.forEach((res, index) = > { + // console.log(res.path) + // }) return routers //返回路由 } diff --git a/ant-design-vue-jeecg/src/views/bugx/BugxList.vue b/ant-design-vue-jeecg/src/views/bugx/BugxList.vue new file mode 100644 index 0000000..d49f5ea --- /dev/null +++ b/ant-design-vue-jeecg/src/views/bugx/BugxList.vue @@ -0,0 +1,315 @@ + + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/bugx/modules/BugxForm.vue b/ant-design-vue-jeecg/src/views/bugx/modules/BugxForm.vue new file mode 100644 index 0000000..7ccb729 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/bugx/modules/BugxForm.vue @@ -0,0 +1,194 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/bugx/modules/BugxModal.vue b/ant-design-vue-jeecg/src/views/bugx/modules/BugxModal.vue new file mode 100644 index 0000000..1084c76 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/bugx/modules/BugxModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/bugx/modules/BugxModal__Style#Drawer.vue b/ant-design-vue-jeecg/src/views/bugx/modules/BugxModal__Style#Drawer.vue new file mode 100644 index 0000000..795a711 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/bugx/modules/BugxModal__Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/functionx/FunctionxList.vue b/ant-design-vue-jeecg/src/views/functionx/FunctionxList.vue index 801f5db..768d4b2 100644 --- a/ant-design-vue-jeecg/src/views/functionx/FunctionxList.vue +++ b/ant-design-vue-jeecg/src/views/functionx/FunctionxList.vue @@ -38,10 +38,10 @@
- 新增 + 新增 导出 - - 导入 + + 导入 @@ -142,6 +142,7 @@
+ @@ -154,12 +155,14 @@ import {getAction} from "@api/manage"; import {filterObj} from "@/utils/util"; import store from '@/store' + import BugxModal from "./modules/BugxModal"; export default { name: 'FunctionxList', mixins:[JeecgListMixin, mixinDevice], components: { - FunctionxModal + FunctionxModal, + BugxModal }, data () { return { @@ -408,7 +411,7 @@ fanhui(){ this.$router.push({ /*返回产品*/ - path: '',/*在引号中填写返回vue*/ + path: '/src/views/modulex/ModulexList',/*在引号中填写返回vue*/ }); }, initDictConfig(){ @@ -492,6 +495,11 @@ this.queryParam='' this.loadData(); }, + fankui: function(record){ + this.$refs.modalForm1.add(record.id); + this.$refs.modalForm1.title = "反馈问题"; + this.$refs.modalForm1.disableSubmit = false; + }, } } diff --git a/ant-design-vue-jeecg/src/views/functionx/modules/BugxForm.vue b/ant-design-vue-jeecg/src/views/functionx/modules/BugxForm.vue new file mode 100644 index 0000000..6f05408 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/functionx/modules/BugxForm.vue @@ -0,0 +1,198 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/functionx/modules/BugxModal.vue b/ant-design-vue-jeecg/src/views/functionx/modules/BugxModal.vue new file mode 100644 index 0000000..5e25e18 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/functionx/modules/BugxModal.vue @@ -0,0 +1,61 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/functionx/modules/FunctionxForm.vue b/ant-design-vue-jeecg/src/views/functionx/modules/FunctionxForm.vue index 2c24364..ca5f64f 100644 --- a/ant-design-vue-jeecg/src/views/functionx/modules/FunctionxForm.vue +++ b/ant-design-vue-jeecg/src/views/functionx/modules/FunctionxForm.vue @@ -243,6 +243,15 @@ }, edit (record) { this.model = Object.assign({}, record); + if(this.model.functionName1!=null){ + this.model.functionName=this.model.functionName1; + } + if(this.model.functionEnName1!=null){ + this.model.functionEnName=this.model.functionEnName1 + } + if(this.model.functionCode1!=null){ + this.model.functionCode=this.model.functionCode1 + } this.visible = true; }, submitForm () { diff --git a/ant-design-vue-jeecg/src/views/modulex/ModulexList.vue b/ant-design-vue-jeecg/src/views/modulex/ModulexList.vue index f5bcf13..882fd8e 100644 --- a/ant-design-vue-jeecg/src/views/modulex/ModulexList.vue +++ b/ant-design-vue-jeecg/src/views/modulex/ModulexList.vue @@ -4,6 +4,20 @@
+ + + + + + + + + + 查询 + 重置 + + +
@@ -12,24 +26,13 @@
新增 - 导出 - - 导入 - - - - - - 删除 - - 批量操作 -
- 已选择 {{ selectedRowKeys.length }}项 + 已选择 {{ selectedRowKeys.length }}清空
@@ -50,40 +53,18 @@ - - + 编辑 + + 详情 + + + + 删除 + - - - 更多 - - - 详情 - - - - 删除 - - - - @@ -95,206 +76,206 @@ \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/modulex/modules/BugxForm.vue b/ant-design-vue-jeecg/src/views/modulex/modules/BugxForm.vue new file mode 100644 index 0000000..0333128 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/modulex/modules/BugxForm.vue @@ -0,0 +1,198 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/modulex/modules/BugxModal.vue b/ant-design-vue-jeecg/src/views/modulex/modules/BugxModal.vue new file mode 100644 index 0000000..5e25e18 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/modulex/modules/BugxModal.vue @@ -0,0 +1,61 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/modulex/modules/ModulexForm.vue b/ant-design-vue-jeecg/src/views/modulex/modules/ModulexForm.vue index fa0a282..619c975 100644 --- a/ant-design-vue-jeecg/src/views/modulex/modules/ModulexForm.vue +++ b/ant-design-vue-jeecg/src/views/modulex/modules/ModulexForm.vue @@ -5,12 +5,16 @@ - + + - + + @@ -35,72 +39,85 @@ - + + - + + - + + - + - + - + - + - + + - + + - + - + + - + + - + + - + + @@ -118,6 +135,7 @@ import { httpAction, getAction } from '@api/manage' import { validateDuplicateValue } from '@/utils/util' + import moment from "dayjs"; export default { name: 'ModulexForm', @@ -134,6 +152,13 @@ data () { return { model:{ + workLevel: 2, + workStatus: 0, + duration: 1, + submitTime: moment(new Date()).format("YYYY-MM-DD HH:mm:ss"), + realDuration: 16, + status: 1, + verisonStatus: 1, }, labelCol: { xs: { span: 24 }, diff --git a/ant-design-vue-jeecg/src/views/projectUserRole/ProjectUserRoleList.vue b/ant-design-vue-jeecg/src/views/projectUserRole/ProjectUserRoleList.vue index f4c48dc..8c359e0 100644 --- a/ant-design-vue-jeecg/src/views/projectUserRole/ProjectUserRoleList.vue +++ b/ant-design-vue-jeecg/src/views/projectUserRole/ProjectUserRoleList.vue @@ -4,6 +4,20 @@
+ + + + + + + + + + 查询 + 重置 + + +
@@ -12,18 +26,18 @@
新增 - 导出 - - 导入 - - - - - - 删除 - - 批量操作 - + + + + + + + + + + + +
@@ -54,36 +68,19 @@ 无图片 - + 编辑 - - 更多 - - - 详情 - - - - 删除 - - - - + 详情 + + + + 删除 + + @@ -124,7 +121,7 @@ { title:'项目id', align:"center", - dataIndex: 'projectId' + dataIndex: 'projectId_dictText' }, { title:'角色名称', @@ -139,12 +136,17 @@ { title:'父用户', align:"center", - dataIndex: 'sourceId' + dataIndex: 'sourceId_dictText' }, { title:'上级用户', align:"center", - dataIndex: 'pid' + dataIndex: 'pid_dictText' + }, + { + title:'创建时间', + align:"center", + dataIndex: 'createTime' }, { title: '操作', @@ -161,7 +163,7 @@ deleteBatch: "/projectx/projectUserRole/deleteBatch", exportXlsUrl: "/projectx/projectUserRole/exportXls", importExcelUrl: "projectx/projectUserRole/importExcel", - + }, dictOptions:{}, superFieldList:[], diff --git a/ant-design-vue-jeecg/src/views/projectUserRole/modules/ProjectUserRoleForm.vue b/ant-design-vue-jeecg/src/views/projectUserRole/modules/ProjectUserRoleForm.vue index 03bd00e..12f7ead 100644 --- a/ant-design-vue-jeecg/src/views/projectUserRole/modules/ProjectUserRoleForm.vue +++ b/ant-design-vue-jeecg/src/views/projectUserRole/modules/ProjectUserRoleForm.vue @@ -4,28 +4,32 @@ - - + + - + - + - + - + + @@ -36,89 +40,86 @@ \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/projectx/ProjectxList.vue b/ant-design-vue-jeecg/src/views/projectx/ProjectxList.vue index 8712f85..0c2b0c2 100644 --- a/ant-design-vue-jeecg/src/views/projectx/ProjectxList.vue +++ b/ant-design-vue-jeecg/src/views/projectx/ProjectxList.vue @@ -37,25 +37,25 @@
新增 - 导出 - - 导入 - - - - - - - - 删除 - - - 批量操作 - - - + + + + + + + + + + + + + + + + + + +
@@ -92,19 +92,13 @@ 编辑 - - 更多 - - - 详情 - - - - 删除 - - - - + 详情 + + + + 删除 + + @@ -157,21 +151,21 @@ export default { align: "center", dataIndex: 'projectCode' }, - { - title: '项目描述', - align: "center", - dataIndex: 'pmDescribe' - }, - { - title: '项目图片', - align: "center", - dataIndex: 'projectPic' - }, - { - title: '项目网址', - align: "center", - dataIndex: 'projectUrl' - }, + // { + // title: '项目描述', + // align: "center", + // dataIndex: 'pmDescribe' + // }, + // { + // title: '项目图片', + // align: "center", + // dataIndex: 'projectPic' + // }, + // { + // title: '项目网址', + // align: "center", + // dataIndex: 'projectUrl' + // }, // { // title:'源码地址', // align:"center", @@ -203,16 +197,21 @@ export default { return !text ? "" : (text.length > 10 ? text.substr(0, 10) : text) } }, - // { - // title:'复制来源', - // align:"center", - // dataIndex: 'sourceProjectId' - // }, + { + title:'复制来源', + align:"center", + dataIndex: 'sourceProjectId_dictText' + }, { title: '项目状态', align: "center", dataIndex: 'projectStatus_dictText' }, + { + title: '创建时间', + align: "center", + dataIndex: 'createTime' + }, { title: '管理', dataIndex: 'htmlSlot', diff --git a/ant-design-vue-jeecg/src/views/projectx/modules/ProjectxForm.vue b/ant-design-vue-jeecg/src/views/projectx/modules/ProjectxForm.vue index 199451a..e31b1c1 100644 --- a/ant-design-vue-jeecg/src/views/projectx/modules/ProjectxForm.vue +++ b/ant-design-vue-jeecg/src/views/projectx/modules/ProjectxForm.vue @@ -25,7 +25,8 @@ - + + @@ -50,17 +51,19 @@ - + - + - + + @@ -77,7 +80,7 @@ - + diff --git a/ant-design-vue-jeecg/src/views/rulex/RulexList.vue b/ant-design-vue-jeecg/src/views/rulex/RulexList.vue index 01e1ff2..814360b 100644 --- a/ant-design-vue-jeecg/src/views/rulex/RulexList.vue +++ b/ant-design-vue-jeecg/src/views/rulex/RulexList.vue @@ -33,10 +33,10 @@
- 新增 + 新增 导出 - - 导入 + + 导入 @@ -112,7 +112,7 @@
- + @@ -126,10 +126,12 @@ import {getAction} from "@api/manage"; import {filterObj} from "@/utils/util"; import store from '@/store' + import BugxModal from "./modules/BugxModal"; export default { name: 'RulexList', mixins:[JeecgListMixin, mixinDevice], components: { + BugxModal, RulexModal }, data () { @@ -361,6 +363,11 @@ this.queryParam='' this.loadData(); }, + fankui: function(record){ + this.$refs.modalForm1.add(record.id); + this.$refs.modalForm1.title = "反馈问题"; + this.$refs.modalForm1.disableSubmit = false; + }, } } diff --git a/ant-design-vue-jeecg/src/views/rulex/modules/BugxForm.vue b/ant-design-vue-jeecg/src/views/rulex/modules/BugxForm.vue new file mode 100644 index 0000000..90cf6b7 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/rulex/modules/BugxForm.vue @@ -0,0 +1,199 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/rulex/modules/BugxModal.vue b/ant-design-vue-jeecg/src/views/rulex/modules/BugxModal.vue new file mode 100644 index 0000000..5e25e18 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/rulex/modules/BugxModal.vue @@ -0,0 +1,61 @@ + + + \ No newline at end of file diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/controller/BugxController.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/controller/BugxController.java new file mode 100644 index 0000000..a61731e --- /dev/null +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/controller/BugxController.java @@ -0,0 +1,281 @@ +package org.jeecg.modules.demo.bugx.controller; + +import java.util.Arrays; +import java.util.Date; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; +import java.io.IOException; +import java.io.UnsupportedEncodingException; +import java.net.URLDecoder; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.apache.shiro.SecurityUtils; +import org.jeecg.common.api.vo.Result; +import org.jeecg.common.system.query.QueryGenerator; +import org.jeecg.common.system.vo.LoginUser; +import org.jeecg.common.util.oConvertUtils; +import org.jeecg.modules.demo.bugx.entity.Bugx; +import org.jeecg.modules.demo.bugx.service.IBugxService; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import lombok.extern.slf4j.Slf4j; + +import org.jeecg.modules.demo.functionx.entity.Functionx; +import org.jeecg.modules.demo.functionx.mapper.FunctionxMapper; +import org.jeecg.modules.demo.rulex.entity.Rulex; +import org.jeecg.modules.demo.rulex.mapper.RulexMapper; +import org.jeecg.modules.modulex.entity.Modulex; +import org.jeecg.modules.modulex.mapper.ModulexMapper; +import org.jeecg.modules.projectx.entity.Projectx; +import org.jeecg.modules.projectx.mapper.ProjectxMapper; +import org.jeecgframework.poi.excel.ExcelImportUtil; +import org.jeecgframework.poi.excel.def.NormalExcelConstants; +import org.jeecgframework.poi.excel.entity.ExportParams; +import org.jeecgframework.poi.excel.entity.ImportParams; +import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; +import org.jeecg.common.system.base.controller.JeecgController; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import org.springframework.web.multipart.MultipartHttpServletRequest; +import org.springframework.web.servlet.ModelAndView; +import com.alibaba.fastjson.JSON; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.jeecg.common.aspect.annotation.AutoLog; + + /** + * @Description: BUG管理 + * @Author: jeecg-boot + * @Date: 2023-04-11 + * @Version: V1.0 + */ +@Api(tags="BUG管理") +@RestController +@RequestMapping("/bugx/bugx") +@Slf4j +public class BugxController extends JeecgController { + @Autowired + private IBugxService bugxService; + @Autowired + FunctionxMapper functionxMapper; + @Autowired + ProjectxMapper projectxMapper; + @Autowired + ModulexMapper modulexMapper; + @Autowired + RulexMapper rulexMapper; + /** + * 分页列表查询 + * + * @param bugx + * @param pageNo + * @param pageSize + * @param req + * @return + */ + @AutoLog(value = "BUG管理-分页列表查询") + @ApiOperation(value="BUG管理-分页列表查询", notes="BUG管理-分页列表查询") + @GetMapping(value = "/list") + public Result queryPageList(Bugx bugx, + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, + HttpServletRequest req) { + // QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(bugx, req.getParameterMap()); + QueryWrapper queryWrapper=new QueryWrapper<>(); + queryWrapper.orderByDesc("bug_level"); + LoginUser user= (LoginUser) SecurityUtils.getSubject().getPrincipal(); + List role = functionxMapper.findRole(user.getId()); + if(role.contains("1645284981182980098")||role.contains("f6817f48af4fb3af11b9e8bf182f618b")){ + }else{ + //因为开发者是以id,id,id的方式存储,理论上可以用模糊查询到 + queryWrapper.like("manager_users",user.getId()); + } + if(bugx.getType()!=null){ + queryWrapper.eq("type",bugx.getType()); + } + if(bugx.getBugStatus()!=null){ + queryWrapper.eq("bug_status",bugx.getBugStatus()); + } + Page page = new Page(pageNo, pageSize); + IPage pageList = bugxService.page(page, queryWrapper); + return Result.OK(pageList); + } + + /** + * 添加 + * + * @param bugx + * @return + */ + @AutoLog(value = "BUG管理-添加") + @ApiOperation(value="BUG管理-添加", notes="BUG管理-添加") + @PostMapping(value = "/add") + public Result add(@RequestBody Bugx bugx) { + QueryWrapper queryWrapper=new QueryWrapper(); + String code=null; + int a=0; + //根源是找最终的项目id +// if(bugx.getProjectId()!=null){ +// queryWrapper.eq("project_id",bugx.getProjectId()); +// a=bugxService.count(queryWrapper); +// code=bugxService.sort(bugx.getProjectId()); +// projectxMapper.upDeBug(bugx.getProjectId()); +// }else + if(bugx.getModuleId()!=null){ + queryWrapper.eq("module_id",bugx.getModuleId()); + queryWrapper.isNull("function_id"); + a=bugxService.count(queryWrapper); + Modulex modulex = modulexMapper.selectById(bugx.getModuleId()); + code=bugxService.sort(modulex.getProjectId()); + bugx.setProjectId(modulex.getProjectId()); + bugx.setManagerUsers(modulex.getManagerUsers()); + rulexMapper.upMstatus(bugx.getModuleId()); + }else if(bugx.getFunctionId()!=null){ + queryWrapper.eq("function_id",bugx.getFunctionId()); + queryWrapper.isNull("rule_id"); + a=bugxService.count(queryWrapper); + Functionx functionx = functionxMapper.selectById(bugx.getFunctionId()); + Modulex modulex = modulexMapper.selectById(functionx.getModuleId()); + code=bugxService.sort(modulex.getProjectId()); + bugx.setModuleId(functionx.getModuleId()); + bugx.setProjectId(modulex.getProjectId()); + bugx.setManagerUsers(functionx.getManagerUsers()); + rulexMapper.upFstatus(bugx.getFunctionId()); + }else{ + queryWrapper.eq("rule_id",bugx.getRuleId()); + a=bugxService.count(queryWrapper); + Rulex rulex = rulexMapper.selectById(bugx.getRuleId()); + Modulex modulex = modulexMapper.selectById(rulex.getModuleId()); + bugx.setModuleId(rulex.getModuleId()); + bugx.setFunctionId(rulex.getFunctionId()); + code=bugxService.sort(modulex.getProjectId()); + bugx.setProjectId(modulex.getProjectId()); + bugx.setManagerUsers(rulex.getManagerUsers()); + rulexMapper.upRstatus(bugx.getRuleId()); + } + if(a>=1){ + return Result.error("当前BUG以提出!!"); + } + //设置BUG编码 + if(code==null){ + bugx.setBugCode("E00001"); + }else{ + int i = Integer.parseInt(code.substring(1)); + i++; + String s = Integer.toString(i); + while(s.length()<5){ + s="0"+s; + } + bugx.setBugCode("E"+s); + } + bugx.setPublishTime(new Date()); + bugxService.save(bugx); + return Result.OK("提交BUG成功!"); + } + + /** + * 编辑 + * + * @param bugx + * @return + */ + @AutoLog(value = "BUG管理-编辑") + @ApiOperation(value="BUG管理-编辑", notes="BUG管理-编辑") + @PutMapping(value = "/edit") + public Result edit(@RequestBody Bugx bugx) { + if(bugx.getBugStatus()==4){ + return Result.error("已提交过!!"); + } + if(bugx.getBugStatus()==2) + return Result.error("当前BUG已解决!!"); + //提交时就相当于xiugai + bugx.setSubmitTime(new Date()); + bugx.setBugStatus(4); + bugxService.updateById(bugx); + return Result.OK("提交成功!"); + } + + /** + * 通过id删除 + * + * @param id + * @return + */ + @AutoLog(value = "BUG管理-通过id删除") + @ApiOperation(value="BUG管理-通过id删除", notes="BUG管理-通过id删除") + @DeleteMapping(value = "/delete") + public Result delete(@RequestParam(name="id",required=true) String id) { + bugxService.removeById(id); + return Result.OK("删除成功!"); + } + + /** + * 批量删除 + * + * @param ids + * @return + */ + @AutoLog(value = "BUG管理-批量删除") + @ApiOperation(value="BUG管理-批量删除", notes="BUG管理-批量删除") + @DeleteMapping(value = "/deleteBatch") + public Result deleteBatch(@RequestParam(name="ids",required=true) String ids) { + this.bugxService.removeByIds(Arrays.asList(ids.split(","))); + return Result.OK("批量删除成功!"); + } + + /** + * 通过id查询 + * + * @param id + * @return + */ + @AutoLog(value = "BUG管理-通过id查询") + @ApiOperation(value="BUG管理-通过id查询", notes="BUG管理-通过id查询") + @GetMapping(value = "/queryById") + public Result queryById(@RequestParam(name="id",required=true) String id) { + Bugx bugx = bugxService.getById(id); + if(bugx==null) { + return Result.error("未找到对应数据"); + } + return Result.OK(bugx); + } + + /** + * 导出excel + * + * @param request + * @param bugx + */ + @RequestMapping(value = "/exportXls") + public ModelAndView exportXls(HttpServletRequest request, Bugx bugx) { + return super.exportXls(request, bugx, Bugx.class, "BUG管理"); + } + + /** + * 通过excel导入数据 + * + * @param request + * @param response + * @return + */ + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) + public Result importExcel(HttpServletRequest request, HttpServletResponse response) { + return super.importExcel(request, response, Bugx.class); + } + + @GetMapping(value = "/shenhe") + public Result shenhe(@RequestParam(name="id",required=true) String id) { + return bugxService.shenhe(id); + } + @GetMapping(value = "/bohui") + public Result bohui(@RequestParam(name="id",required=true) String id) { + return bugxService.bohui(id); + } + + + } diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/entity/Bugx.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/entity/Bugx.java new file mode 100644 index 0000000..abdc0dc --- /dev/null +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/entity/Bugx.java @@ -0,0 +1,131 @@ +package org.jeecg.modules.demo.bugx.entity; + +import java.io.Serializable; +import java.io.UnsupportedEncodingException; +import java.util.Date; +import java.math.BigDecimal; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.springframework.format.annotation.DateTimeFormat; +import org.jeecgframework.poi.excel.annotation.Excel; +import org.jeecg.common.aspect.annotation.Dict; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; + +/** + * @Description: BUG管理 + * @Author: jeecg-boot + * @Date: 2023-04-11 + * @Version: V1.0 + */ +@Data +@TableName("bugx") +@Accessors(chain = true) +@EqualsAndHashCode(callSuper = false) +@ApiModel(value="bugx对象", description="BUG管理") +public class Bugx implements Serializable { + private static final long serialVersionUID = 1L; + + /**主键*/ + @TableId(type = IdType.ASSIGN_ID) + @ApiModelProperty(value = "主键") + private java.lang.String id; + /**创建人*/ + @ApiModelProperty(value = "创建人") + private java.lang.String createBy; + /**创建日期*/ + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @ApiModelProperty(value = "创建日期") + private java.util.Date createTime; + /**更新人*/ + @ApiModelProperty(value = "更新人") + private java.lang.String updateBy; + /**更新日期*/ + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @ApiModelProperty(value = "更新日期") + private java.util.Date updateTime; + /**BUG编码*/ + @Excel(name = "BUG编码", width = 15) + @ApiModelProperty(value = "BUG编码") + private java.lang.String bugCode; + /**BUG类型*/ + @Excel(name = "BUG类型", width = 15) + @ApiModelProperty(value = "BUG类型") + @Dict(dicCode = "bug_type") + private java.lang.Integer type; + /**项目id*/ + @Excel(name = "项目id", width = 15) + @ApiModelProperty(value = "项目id") + @Dict(dicText = "project_code",dicCode = "id",dictTable = "projectx") + private java.lang.String projectId; + /**对应模块id*/ + @Excel(name = "对应模块id", width = 15) + @ApiModelProperty(value = "对应模块id") + @Dict(dicText = "module_code",dicCode = "id",dictTable = "modulex") + private java.lang.String moduleId; + /**对应功能id*/ + @Excel(name = "对应功能id", width = 15) + @ApiModelProperty(value = "对应功能id") + @Dict(dicText = "function_code",dicCode = "id",dictTable = "functionx") + private java.lang.String functionId; + /**对应规则id*/ + @Excel(name = "对应规则id", width = 15) + @ApiModelProperty(value = "对应规则id") + @Dict(dicText = "rule_code",dicCode = "id",dictTable = "rulex") + private java.lang.String ruleId; + /**BUG等级*/ + @Excel(name = "BUG等级", width = 15) + @ApiModelProperty(value = "BUG等级") + @Dict(dicCode = "work_level") + private java.lang.Integer bugLevel; + /**BUG描述*/ + @Excel(name = "BUG描述", width = 15) + @ApiModelProperty(value = "BUG描述") + private java.lang.String pmDesc; + /**BUG图片*/ + @Excel(name = "BUG图片", width = 15) + @ApiModelProperty(value = "BUG图片") + private java.lang.String bugPic; + /**发布时间*/ + @Excel(name = "发布时间", width = 15, format = "yyyy-MM-dd") + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @ApiModelProperty(value = "发布时间") + private java.util.Date publishTime; + /**提交内容*/ + @Excel(name = "提交内容", width = 15) + @ApiModelProperty(value = "提交内容") + private java.lang.String submitContent; + /**提交图片*/ + @Excel(name = "提交图片", width = 15) + @ApiModelProperty(value = "提交图片") + private java.lang.String submitPic; + /**责任人*/ + @Excel(name = "责任人", width = 15) + @ApiModelProperty(value = "责任人") + private java.lang.String managerUsers; + /**BUG状态*/ + @Excel(name = "BUG状态", width = 15) + @ApiModelProperty(value = "BUG状态") + @Dict(dicCode = "bug_status") + private java.lang.Integer bugStatus; + /**提交时间*/ + @Excel(name = "提交时间", width = 15, format = "yyyy-MM-dd") + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @ApiModelProperty(value = "提交时间") + private java.util.Date submitTime; + /**审核时间*/ + @Excel(name = "审核时间", width = 15, format = "yyyy-MM-dd") + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @ApiModelProperty(value = "审核时间") + private java.util.Date auditTime; +} diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/mapper/BugxMapper.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/mapper/BugxMapper.java new file mode 100644 index 0000000..49d9b7a --- /dev/null +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/mapper/BugxMapper.java @@ -0,0 +1,35 @@ +package org.jeecg.modules.demo.bugx.mapper; + +import java.util.Date; +import java.util.List; + +import org.apache.ibatis.annotations.Param; +import org.apache.ibatis.annotations.Select; +import org.apache.ibatis.annotations.Update; +import org.jeecg.modules.demo.bugx.entity.Bugx; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @Description: BUG管理 + * @Author: jeecg-boot + * @Date: 2023-04-11 + * @Version: V1.0 + */ +public interface BugxMapper extends BaseMapper { + + @Select("select bug_code from bugx where project_id=#{code} order by bug_code desc limit 0,1") + String sort(String code); + + @Update("update bugx set bug_status=2,audit_time=#{date} where id=#{id}") + void shenhe(@Param("id") String id, @Param("date") Date date); + + @Update("update bugx set bug_status=1,audit_time=null where id=#{id}") + void bohui(@Param("id") String id, @Param("date") Date date); + + @Update("update rulex set work_status=4 where id=#{ruleId}") + void upRstatus(String ruleId); + @Update("update modulex set work_status=4 where id=#{ruleId}") + void upMstatus(String ruleId); + @Update("update functionx set work_status=4 where id=#{ruleId}") + void upFstatus(String ruleId); +} diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/mapper/xml/BugxMapper.xml b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/mapper/xml/BugxMapper.xml new file mode 100644 index 0000000..618c841 --- /dev/null +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/mapper/xml/BugxMapper.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/service/IBugxService.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/service/IBugxService.java new file mode 100644 index 0000000..2a173c9 --- /dev/null +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/service/IBugxService.java @@ -0,0 +1,20 @@ +package org.jeecg.modules.demo.bugx.service; + +import org.jeecg.common.api.vo.Result; +import org.jeecg.modules.demo.bugx.entity.Bugx; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * @Description: BUG管理 + * @Author: jeecg-boot + * @Date: 2023-04-11 + * @Version: V1.0 + */ +public interface IBugxService extends IService { + + String sort(String code); + + Result shenhe(String id); + + Result bohui(String id); +} diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/service/impl/BugxServiceImpl.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/service/impl/BugxServiceImpl.java new file mode 100644 index 0000000..52c2106 --- /dev/null +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/bugx/service/impl/BugxServiceImpl.java @@ -0,0 +1,57 @@ +package org.jeecg.modules.demo.bugx.service.impl; + +import org.jeecg.common.api.vo.Result; +import org.jeecg.modules.demo.bugx.entity.Bugx; +import org.jeecg.modules.demo.bugx.mapper.BugxMapper; +import org.jeecg.modules.demo.bugx.service.IBugxService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +import java.util.Date; + +/** + * @Description: BUG管理 + * @Author: jeecg-boot + * @Date: 2023-04-11 + * @Version: V1.0 + */ +@Service +public class BugxServiceImpl extends ServiceImpl implements IBugxService { + + @Autowired + BugxMapper bugxMapper; + @Override + public String sort(String code) { + return bugxMapper.sort(code); + } + + @Override + public Result shenhe(String id) { + Bugx bugx = bugxMapper.selectById(id); + if(bugx.getBugStatus()==4){ + if(bugx.getRuleId()!=null){ + bugxMapper.upRstatus(bugx.getRuleId()); + }else if(bugx.getFunctionId()!=null){ + baseMapper.upFstatus(bugx.getFunctionId()); + }else { + baseMapper.upMstatus(bugx.getModuleId()); + } + bugxMapper.shenhe(id,new Date()); + return Result.OK("审核通过!!"); + }else if(bugx.getBugStatus()==2){ + return Result.error("已审核过!!!"); + } + else{ + return Result.error("请先提交!!"); + } + + } + + @Override + public Result bohui(String id) { + bugxMapper.bohui(id,new Date()); + return Result.OK("驳回!!"); + } +} diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/Rulex.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/Rulex.java index 3cdefd0..e3137ce 100644 --- a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/Rulex.java +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/entity/Rulex.java @@ -54,10 +54,12 @@ public class Rulex implements Serializable { /**对应模块id*/ @Excel(name = "对应模块id", width = 15) @ApiModelProperty(value = "对应模块id") + @Dict(dictTable = "modulex",dicCode = "id",dicText = "module_name") private java.lang.String moduleId; /**对应功能id*/ @Excel(name = "对应功能id", width = 15) @ApiModelProperty(value = "对应功能id") + @Dict(dictTable = "functionx",dicCode = "id",dicText = "function_name") private java.lang.String functionId; /**规则序号*/ @Excel(name = "规则序号", width = 15) @@ -78,10 +80,12 @@ public class Rulex implements Serializable { /**对应实体id*/ @Excel(name = "对应实体id", width = 15) @ApiModelProperty(value = "对应实体id") + @Dict(dictTable = "tablex",dicText = "table_name",dicCode = "id") private java.lang.String tableId; /**对应字段*/ @Excel(name = "对应字段", width = 15) @ApiModelProperty(value = "对应字段") + @Dict(dictTable = "fieldx",dicText = "field_name",dicCode = "id") private java.lang.String fieldId; /**责任人*/ @Excel(name = "责任人", width = 15) @@ -90,10 +94,12 @@ public class Rulex implements Serializable { /**任务等级*/ @Excel(name = "任务等级", width = 15) @ApiModelProperty(value = "任务等级") + @Dict(dicCode = "work_level") private java.lang.Integer workLevel; /**任务状态*/ @Excel(name = "任务状态", width = 15) @ApiModelProperty(value = "任务状态") + @Dict(dicCode = "work_status") private java.lang.Integer workStatus; /**开始时间*/ @Excel(name = "开始时间", width = 20, format = "yyyy-MM-dd HH:mm:ss") @@ -118,13 +124,16 @@ public class Rulex implements Serializable { /**规则状态*/ @Excel(name = "规则状态", width = 15) @ApiModelProperty(value = "规则状态") + @Dict(dicCode = "status") private java.lang.Integer status; /**版本状态*/ @Excel(name = "版本状态", width = 15) @ApiModelProperty(value = "版本状态") + @Dict(dicCode = "verison_status") private java.lang.Integer verisonStatus; /**版本号*/ @Excel(name = "版本号", width = 15) @ApiModelProperty(value = "版本号") + private java.lang.String verison; } diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/mapper/RulexMapper.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/mapper/RulexMapper.java index eb0df0a..5d661b5 100644 --- a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/mapper/RulexMapper.java +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/rulex/mapper/RulexMapper.java @@ -4,6 +4,7 @@ import java.util.List; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; +import org.apache.ibatis.annotations.Update; import org.jeecg.modules.demo.rulex.entity.Rulex; import com.baomidou.mybatisplus.core.mapper.BaseMapper; @@ -20,4 +21,11 @@ public interface RulexMapper extends BaseMapper { @Select("select function_code from functionx where id=#{id}") String find(String id); + + @Update("update rulex set work_status=9 where id=#{ruleId}") + void upRstatus(String ruleId); + @Update("update functionx set work_status=9 where id=#{ruleId}") + void upFstatus(String ruleId); + @Update("update modulex set work_status=9 where id=#{ruleId}") + void upMstatus(String ruleId); } diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/modulex/entity/Modulex.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/modulex/entity/Modulex.java index 2a1a376..8921e72 100644 --- a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/modulex/entity/Modulex.java +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/modulex/entity/Modulex.java @@ -51,15 +51,28 @@ public class Modulex implements Serializable { @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "更新日期") private Date updateTime; - /**上级模块id*/ + /** + * 上级模块id + * 关联表字段 modulex.id + * 显示:上级名称 + */ @Excel(name = "上级模块id", width = 15) @ApiModelProperty(value = "上级模块id") + @Dict(dictTable = "modulex",dicText = "module_name",dicCode = "id") private String pid; - /**项目id*/ + /** + * 项目id + * 关联表字段 modulex.id + * 显示:项目名称 + */ @Excel(name = "项目id", width = 15) @ApiModelProperty(value = "项目id") + @Dict(dictTable = "projectx",dicText = "project_name",dicCode = "id") private String projectId; - /**中文名称*/ + /** + * 中文名称 + * 相同上级的模块不能重名 + */ @Excel(name = "中文名称", width = 15) @ApiModelProperty(value = "中文名称") private String moduleName; @@ -75,7 +88,11 @@ public class Modulex implements Serializable { @Excel(name = "内容描述", width = 15) @ApiModelProperty(value = "内容描述") private String pmDescribe; - /**责任人*/ + /** + * 责任人 + * 关联表字段 用户表.id(s) + * 用户id列表;模块的开发任务可以分配给多个人员;显示:用户名称(列表) + */ @Excel(name = "责任人", width = 15) @ApiModelProperty(value = "责任人") private String managerUsers; @@ -89,7 +106,7 @@ public class Modulex implements Serializable { private Integer workLevel; /** * 任务状态 - * 值:未发布0、已发布1、开发中2、已完成3、已驳回8;默认0 + * 值:未发布0、已发布1、开发中2、已完成3、已审核4、DEBUG9;默认0 */ @Excel(name = "任务状态", width = 15) @ApiModelProperty(value = "任务状态") @@ -101,7 +118,10 @@ public class Modulex implements Serializable { @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "发布时间") private Date publishTime; - /**任务时长*/ + /** + * 任务时长 + * 单位小时;等于下级模块时长的和;默认1(小时) + */ @Excel(name = "任务时长", width = 15) @ApiModelProperty(value = "任务时长") private Double duration; @@ -121,13 +141,22 @@ public class Modulex implements Serializable { @Excel(name = "实际时长", width = 15) @ApiModelProperty(value = "实际时长") private Double realDuration; - /**用户角色*/ + /** + * 用户角色 + * 关联表字段 project_user_role.id(s) + * 规则 角色列表;哪些用户可以使用该模块,即未来系统的权限分配;显示角色名(列表) + */ @Excel(name = "用户角色", width = 15) @ApiModelProperty(value = "用户角色") private String userRole; - /**关联实体*/ + /** + * 关联实体 + * 关联表字段 tablex.id + * 规则 关联实体表;关联的是该模块管理的实体;最下级(子)模块有;显示表名 + */ @Excel(name = "关联实体", width = 15) @ApiModelProperty(value = "关联实体") + @Dict(dictTable = "tablex",dicText = "table_name",dicCode = "id") private String relatedBean; /**原型图*/ @Excel(name = "原型图", width = 15) diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/projectUserRole/entity/ProjectUserRole.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/projectUserRole/entity/ProjectUserRole.java index 8d95b08..0dfd71f 100644 --- a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/projectUserRole/entity/ProjectUserRole.java +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/projectUserRole/entity/ProjectUserRole.java @@ -10,6 +10,7 @@ import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; +import org.jeecg.common.aspect.annotation.Dict; import org.jeecgframework.poi.excel.annotation.Excel; import org.springframework.format.annotation.DateTimeFormat; @@ -50,9 +51,14 @@ public class ProjectUserRole implements Serializable { @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "更新日期") private Date updateTime; - /**项目id*/ + /** + * 项目id + * 关联表字段 projectx.id + * 显示:项目名称 + */ @Excel(name = "项目id", width = 15) @ApiModelProperty(value = "项目id") + @Dict(dictTable = "projectx",dicText = "project_name",dicCode = "id") private String projectId; /**角色名称*/ @Excel(name = "角色名称", width = 15) @@ -62,12 +68,22 @@ public class ProjectUserRole implements Serializable { @Excel(name = "角色描述", width = 15) @ApiModelProperty(value = "角色描述") private String pmDescribe; - /**父用户*/ + /** + * 父用户 + * 关联表字段 project_user_role.id + * 继承的用户角色;显示:角色名称 + */ @Excel(name = "父用户", width = 15) @ApiModelProperty(value = "父用户") + @Dict(dictTable = "project_user_role",dicText = "user_role",dicCode = "id") private String sourceId; - /**上级用户*/ + /** + * 上级用户 + * 关联表字段 project_user_role.id + * 本用户的上级用户角色;显示:角色名称 + */ @Excel(name = "上级用户", width = 15) @ApiModelProperty(value = "上级用户") + @Dict(dictTable = "project_user_role",dicText = "user_role",dicCode = "id") private String pid; } diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/projectx/entity/Projectx.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/projectx/entity/Projectx.java index b09eb84..b66b103 100644 --- a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/projectx/entity/Projectx.java +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/projectx/entity/Projectx.java @@ -99,9 +99,14 @@ public class Projectx implements Serializable { @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "完成时间") private Date completeTime; - /**复制来源*/ + /** + * 复制来源 + * 关联表字段 projectx.id + * 规则 复制源项目的id;显示:源项目名称 + */ @Excel(name = "复制来源", width = 15) @ApiModelProperty(value = "复制来源") + @Dict(dictTable = "projectx", dicText = "project_name",dicCode = "id") private String sourceProjectId; /**项目状态*/ @Excel(name = "项目状态", width = 15)