master
admin 2 years ago
parent 8549bb832a
commit 7d0a4ef21e
  1. 522
      ant-design-vue-jeecg/src/views/fieldx/FieldxList.vue
  2. 2
      ant-design-vue-jeecg/src/views/fieldx/modules/FieldxForm.vue
  3. 14
      ant-design-vue-jeecg/src/views/tablex/TablexList.vue
  4. 81
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/fieldx/controller/FieldxController.java
  5. 10
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/tablex/controller/TablexController.java

@ -1,109 +1,60 @@
<template> <template>
<a-card :bordered="false"> <a-modal
<!-- 查询区域 --> width="96%"
<div class="table-page-search-wrapper"> title="评分项管理"
<a-form layout="inline" @keyup.enter.native="searchQuery"> :visible="visible"
<a-row :gutter="24"> :confirm-loading="confirmLoading"
<a-col :xl="6" :lg="7" :md="8" :sm="24"> @ok="handleOk"
<a-form-item label="中文名称"> @cancel="handleCancel"
<a-input placeholder="中文名称" v-model="queryParam.fieldName"></a-input> >
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="英文名称">
<a-input placeholder="英文名称" v-model="queryParam.fieldEnName"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="实体状态">
<j-dict-select-tag type="list" v-model="queryParam.status" dictCode="a_status" placeholder="请选择实体状态" />
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
</span>
</a-col>
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('字段管理')">导出</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
<!-- 高级查询区域 -->
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
<a-dropdown v-if="selectedRowKeys.length > 0">
<a-menu slot="overlay">
<a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
</a-menu>
<a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
</a-dropdown>
</div>
<!-- table区域-begin -->
<div> <div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> <j-vxe-table
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
bordered
rowKey="id"
:columns="columns" :columns="columns"
:dataSource="dataSource" :dataSource="dataSource"
:pagination="ipagination"
:loading="loading" :loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" height='auto'
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text"> toolbar
<div v-html="text"></div> :toolbarConfig="toolbarConfig"
</template>
<template slot="imgSlot" slot-scope="text"> row-number
<span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span> row-selection
<img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/> keep-source
</template> async-remove
<template slot="fileSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
<a-button
v-else
:ghost="true"
type="primary"
icon="download"
size="small"
@click="downloadFile(text)">
下载
</a-button>
</template>
<span slot="action" slot-scope="text, record"> :pagination="pagination"
<a @click="handleEdit(record)">编辑</a> style="margin-top: 8px;"
@pageChange="handlePageChange"
@valueChange="valueChange"
@added="added">
<template v-slot:toolbarSuffix>
<a style="
background: #e6f7ff;
color: red;
position: relative;
border: 1px solid #91d5ff;
padding: 6px 300px 8px 31px;
border-radius: 5px;">
注意: 编辑后请点击保存按钮保存数据</a>
<!-- <a-button type="primary" icon="rollback" @click="fanHui()">返回</a-button>-->
<!-- <p style="color: red;font-size: 16px"></p>-->
</template>
<a-divider type="vertical" /> <template v-slot:action="props">
<a @click="handleDetail(record)">详情</a> <a @click="submitForm(props)">保存</a>
<a-divider type="vertical" /> <a-divider type="vertical"/>
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> <!-- <a @click="viewDetail(props.rowId)">详情</a>-->
<!-- <a-divider type="vertical"/>-->
<a-popconfirm title="确定删除吗?" @confirm="handleDelete(props.rowId)">
<a>删除</a> <a>删除</a>
</a-popconfirm> </a-popconfirm>
</span> </template>
</j-vxe-table>
</a-table>
</div> </div>
<fieldx-modal ref="modalForm" @ok="modalFormOk"></fieldx-modal> </a-modal>
</a-card>
</template> </template>
<script> <script>
@ -113,171 +64,362 @@
import { JeecgListMixin } from '@/mixins/JeecgListMixin' import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import FieldxModal from './modules/FieldxModal' import FieldxModal from './modules/FieldxModal'
import {filterMultiDictText} from '@/components/dict/JDictSelectUtil' import {filterMultiDictText} from '@/components/dict/JDictSelectUtil'
import {JVXETypes} from '@/components/jeecg/JVxeTable'
import {filterObj} from '@/utils/util'
import moment from "dayjs";
import { httpAction, getAction } from '@/api/manage'
export default { export default {
name: 'FieldxList', name: 'FieldxList',
mixins:[JeecgListMixin, mixinDevice], mixins: [JeecgListMixin, mixinDevice],
components: { components: {},
FieldxModal data() {
},
data () {
return { return {
description: '字段管理管理页面', description: '字段管理管理页面',
loadRouteType:false, tableid:'',
tableId:'', tablename:'',
visible: false,
confirmLoading: false,
//
toolbarConfig: {
// add remove clearSelection
btn: ['add'],
},
//
loading: false,
//
pagination: {
//
current: 1,
//
pageSize: 10,
//
pageSizeOptions: ['10', '20', '30', '100', '200'],
// 0
total: 0,
showQuickJumper: true,
showSizeChanger: true,
id: null
},
// reload
reloadEffect:true,
// //
columns: [ columns: [
/*
如果留行号和可选择行的话 宽度得留给它12% 也就是还省88%的宽度
关于插槽 每个按钮留10%的宽度 如果有两个按钮 宽度就设为20% 按钮一般就两个字
*/
// {
// title: '', width: '100px', fixed: 'left', key: '',
// type: JVXETypes.normal,
// placeholder: '${title}',
// disabled: true,
// },
{ {
title: '#', key: 'tableId_dictText', title: '对应实体', width: '6%',
dataIndex: '', type: JVXETypes.normal,
key:'rowIndex', disabled: true,
width:60, defaultValue:this.tablename,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title:'对应实体',
align:"center",
dataIndex: 'tableId_dictText'
}, },
{ {
title:'中文名称', key: 'fieldName', title: '中文名称', width: '6%',
align:"center", type: JVXETypes.input,
dataIndex: 'fieldName' validateRules: [{required: true, message: '${title}不能为空'}]
}, },
{ {
title:'英文名称', key: 'fieldEnName', title: '英文名称', width: '6%',
align:"center", type: JVXETypes.input,
dataIndex: 'fieldEnName' validateRules: [{required: true, message: '${title}不能为空'}]
}, },
{ {
title:'数据类型', key: 'type', title: '数据类型', width: '6%',
align:"center", type: JVXETypes.selectSearch,
dataIndex: 'type_dictText' dictCode:'date_type',
validateRules: [{required: true, message: '${title}不能为空'}]
}, },
{ {
title:'数据长度', key: 'accuracy', title: '浮点精度', width: '6%',
align:"center", type: JVXETypes.inputNumber,
dataIndex: 'length'
}, },
{ {
title:'浮点精度', key: 'format', title: '显示形式', width: '6%',
align:"center", type: JVXETypes.textarea,
dataIndex: 'accuracy'
}, },
{ {
title:'显示形式', key: 'isPk', title: '是否主键', width: '6%',
align:"center", type: JVXETypes.select,
dataIndex: 'format' dictCode:'yn',
defaultValue:0,
validateRules: [{required: true, message: '${title}不能为空'}]
}, },
{ {
title:'是否主键', key: 'isFk', title: '是否外键', width: '6%',
align:"center", type: JVXETypes.select,
dataIndex: 'isPk_dictText' dictCode:'yn',
defaultValue:0,
validateRules: [{required: true, message: '${title}不能为空'}]
}, },
{ {
title:'是否外键', key: 'associateTable', title: '关联实体', width: '6%',
align:"center", type: JVXETypes.select,
dataIndex: 'isFk_dictText' dictCode:'tablex,table_name,id',
}, },
{ {
title:'关联实体', key: 'associateField', title: '关联字段', width: '6%',
align:"center", type: JVXETypes.select,
dataIndex: 'associateTable' options: [],
placeholder: '请选择${title}',
}, },
{ {
title:'关联字段', key: 'isNull', title: '是否为空', width: '6%',
align:"center", type: JVXETypes.select,
dataIndex: 'associateField' dictCode:'yn',
defaultValue:0,
validateRules: [{required: true, message: '${title}不能为空'}]
}, },
{ {
title:'是否为空', key: 'isUniqueness', title: '是否重复', width: '6%',
align:"center", type: JVXETypes.select,
dataIndex: 'isNull_dictText' dictCode:'yn',
defaultValue:0,
validateRules: [{required: true, message: '${title}不能为空'}]
}, },
{ {
title:'是否重复', key: 'rule', title: '字段规则', width: '6%',
align:"center", type: JVXETypes.textarea,
dataIndex: 'isUniqueness_dictText'
}, },
{ {
title:'字段规则', key: 'status', title: '字段状态', width: '6%',
align:"center", type: JVXETypes.select,
dataIndex: 'rule', dictCode:'a_status',
scopedSlots: {customRender: 'htmlSlot'} defaultValue:1,
validateRules: [{required: true, message: '${title}不能为空'}]
}, },
{ {
title:'字段状态', key: 'verisonStatus', title: '版本状态', width: '6%',
align:"center", type: JVXETypes.select,
dataIndex: 'status_dictText' dictCode:'verison_status',
}, defaultValue:1,
{ validateRules: [{required: true, message: '${title}不能为空'}]
title:'版本状态',
align:"center",
dataIndex: 'verisonStatus_dictText'
},
{
title:'版本号',
align:"center",
dataIndex: 'verison'
}, },
// {
// key: 'verison', title: '', width: '18%',
// type: JVXETypes.input,
// dictCode:'yn',
// },
// {
// title: '',
// dataIndex: 'action',
// align: "center",
// fixed: "right",
// width: 147,
// scopedSlots: {customRender: 'action'}
// }
{ {
title: '操作', title: '操作',
dataIndex: 'action', key: 'action',
align:"center", type: JVXETypes.slot,
fixed:"right", fixed: 'right',
width:147, //
scopedSlots: { customRender: 'action' } align: 'center',
minWidth: '6%',
slotName: 'action',
} }
], ],
url: { url: {
add: "/fieldx/fieldx/add",
edit: "/fieldx/fieldx/edit",
list: "/fieldx/fieldx/list", list: "/fieldx/fieldx/list",
delete: "/fieldx/fieldx/delete", delete: "/fieldx/fieldx/delete",
deleteBatch: "/fieldx/fieldx/deleteBatch", deleteBatch: "/fieldx/fieldx/deleteBatch",
exportXlsUrl: "/fieldx/fieldx/exportXls", exportXlsUrl: "/fieldx/fieldx/exportXls",
importExcelUrl: "fieldx/fieldx/importExcel", importExcelUrl: "fieldx/fieldx/importExcel",
getFieldByTableId:"/fieldx/fieldx/getFieldByTableId",
}, },
dictOptions:{}, dictOptions: {},
superFieldList:[], superFieldList: [],
//
loadRouteType: false,
} }
}, },
created() { created() {
this.loadParameter();
this.getSuperFieldList(); this.getSuperFieldList();
this.searchQuery();
}, },
computed: { computed: {
importExcelUrl: function(){ importExcelUrl: function () {
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}, },
}, },
methods: { methods: {
initDictConfig(){ submitForm(props) {
this.model = Object.assign({}, props);
var str = props.rowId;
let httpurl = '';
let method = '';
if (str.search("row") !== -1) {
props.row.id ='';
httpurl += this.url.add;
method = 'post';
} else {
httpurl += this.url.edit;
method = 'put';
}
props.row.tableId = this.tableid
httpAction(httpurl, props.row, method).then((res) => {
if (res.success) {
this.$message.success(res.message);
this.$emit('ok');
} else {
this.$message.warning(res.message);
}
})
},
//
added(event) {
const {type, row, column, value, target} = event
this.tableid = this.model.id
target.setValues([{
rowKey: row.id,
values: {tableId_dictText: this.model.tableName}
}])
},
//
async handleValueChange(event) {
//this.submitForm(event)
// console.log("//", event);
//const str = event.row.id;
let httpUrl = this.url.edit;
let method = 'put';
await httpAction(httpUrl, event.row, method).then((res) => {
if (res.success) {
this.$message.success(res.message);
this.$emit('ok');
} else {
this.$message.warning(res.message);
}
})
},
//
valueChange(event){
const {type, row, column, value, target} = event
if (column.key == "associateTable"){
let tableId = row.associateTable
//
target.setValues([{
rowKey: row.id,
values: {associateField: ''}
}])
target.$refs.vxe.columns[11].options = []
//
getAction(this.url.getFieldByTableId, {"tableId": tableId}).then((res) => {
if (res.success) {
this.fieldxList = res.result.records || res.result;
// 2
target.$refs.vxe.columns[11].options = this.fieldxList;
} else {
this.$message.warning(res.message)
}
});
}
},
edit(record) {
this.model = Object.assign({}, record);
console.log(this.model)
//console.log(topicid);
this.queryParam.tableId = this.model.id;
this.tableid = this.model.id
//console.log(this.queryParam.topicid);
this.loadData();
},
showModal() {
this.visible = true;
}, },
searchReset() { // handleOk(e) {
this.tableId = this.$route.query.tableId; // this.ModalText = 'The modal will be closed after two seconds';
this.queryParam ={}; // this.confirmLoading = true;
this.queryParam.tableId = this.tableId; // setTimeout(() => {
this.loadData(1); // this.visible = false;
// this.confirmLoading = false;
// }, 2000);
// },
handleOk(e) {
this.visible = false;
}, },
searchQuery(){ handleCancel(e) {
this.tableId = this.$route.query.tableId; console.log('Clicked cancel button');
this.queryParam.tableId = this.$route.query.tableId; this.visible = false;
this.loadData(1); },
initDictConfig() {
}, },
// //
loadParameter() { loadParameter() {
if (this.loadRouteType == false) { if (this.loadRouteType === false) {
this.queryParam.tableId = this.$route.query.tableId; // this.id = this.$route.query.id;
this.tableId = this.$route.query.tableId; console.log('this.id -----------------', this.id)
console.log(this.queryParam.tableId) //this.styleId = this.id;
//this.biaoTi = this.$route.query.styleNames + "";
//console.log("**********id" + this.id);
this.loadRouteType = true; this.loadRouteType = true;
this.loadData(1);
} }
}, },
//
loadData(arg) {
// 1
if (arg === 1) {
this.pagination.current = 1;
}
//
this.loadParameter();
var params = this.getQueryParams1();//
this.loading = true;
getAction(this.url.list, params).then(res => {
if (res.success) {
/*// 后台查询回来的 total数据总数量
this.pagination.total = res.result.total*/
// dataSource
this.dataSource = res.result.records || res.result;
console.log(this.dataSource, 'abc')
if (res.result.total) {
this.pagination.total = res.result.total;
} else {
this.pagination.total = 0;
}
//this.dataSource = res.result.records
} else {
this.$error({title: '主表查询失败', content: res.message})
}
}).finally(() => {
// loading
this.loading = false
})
},
//
handlePageChange(event) {
//
this.pagination.current = event.current
this.pagination.pageSize = event.pageSize
//
this.loadData()
},
getQueryParams1() {
//
let sqp = {}
if (this.superQueryParams) {
sqp['superQueryParams'] = encodeURI(this.superQueryParams)
sqp['superQueryMatchType'] = this.superQueryMatchType
}
var param = Object.assign(sqp, this.queryParam, this.isorter, this.filters);
param.field = this.getQueryField();
param.pageNo = this.ipagination.current;
param.pageSize = this.ipagination.pageSize;
//param.id = this.id
return filterObj(param);
},
getSuperFieldList(){ getSuperFieldList(){
let fieldList=[]; let fieldList=[];
fieldList.push({type:'string',value:'tableId',text:'对应实体',dictCode:'tablex,table_name,id'}) fieldList.push({type:'string',value:'tableId',text:'对应实体',dictCode:'tablex,table_name,id'})

@ -5,7 +5,7 @@
<a-row> <a-row>
<a-col :span="24"> <a-col :span="24">
<a-form-model-item label="对应实体" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="tableId"> <a-form-model-item label="对应实体" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="tableId">
<j-search-select-tag v-model="model.tableId" placeholder="请选择对应实体" dict="tablex,table_name,id" /> <j-search-select-tag v-model="model.tableId" placeholder="请选择对应实体" disabled dict="tablex,table_name,id" />
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
<a-col :span="24"> <a-col :span="24">

@ -89,7 +89,7 @@
</template> </template>
<template slot="htmlSlot" slot-scope="text,record"> <template slot="htmlSlot" slot-scope="text,record">
<a @click="tablemanage(record.id)">字段</a> <a @click="viewVid(record)">字段</a>
</template> </template>
<span slot="action" slot-scope="text, record"> <span slot="action" slot-scope="text, record">
@ -108,6 +108,7 @@
</div> </div>
<tablex-modal ref="modalForm" @ok="modalFormOk"></tablex-modal> <tablex-modal ref="modalForm" @ok="modalFormOk"></tablex-modal>
<FieldxList ref="FieldxList"></FieldxList>
</a-card> </a-card>
</template> </template>
@ -119,6 +120,7 @@
import TablexModal from './modules/TablexModal' import TablexModal from './modules/TablexModal'
import {filterMultiDictText} from '@/components/dict/JDictSelectUtil' import {filterMultiDictText} from '@/components/dict/JDictSelectUtil'
import JEllipsis from '@/components/jeecg/JEllipsis' import JEllipsis from '@/components/jeecg/JEllipsis'
import FieldxList from "@/views/fieldx/FieldxList";
export default { export default {
name: 'TablexList', name: 'TablexList',
@ -126,6 +128,7 @@
components: { components: {
TablexModal, TablexModal,
JEllipsis, JEllipsis,
FieldxList,
}, },
data () { data () {
let ellipsis = (v, l = 20) => (<j-ellipsis value={v} length={l}/>) let ellipsis = (v, l = 20) => (<j-ellipsis value={v} length={l}/>)
@ -243,11 +246,10 @@
}, },
}, },
methods: { methods: {
tablemanage(tableId) { viewVid(record) {
this.$router.push({ this.$refs.FieldxList.showModal();
path: '/fieldx/FieldxList', this.$refs.FieldxList.edit(record);
query: {tableId: tableId} this.$refs.FieldxList.disableSubmit = false;
})
}, },
initDictConfig(){ initDictConfig(){
}, },

@ -1,14 +1,14 @@
package org.jeecg.modules.fieldx.controller; package org.jeecg.modules.fieldx.controller;
import java.util.Arrays; import java.util.*;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import java.io.IOException; import java.io.IOException;
import java.io.UnsupportedEncodingException; import java.io.UnsupportedEncodingException;
import java.net.URLDecoder; import java.net.URLDecoder;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import org.apache.ibatis.annotations.Param;
import org.jeecg.common.api.vo.Result; import org.jeecg.common.api.vo.Result;
import org.jeecg.common.system.query.QueryGenerator; import org.jeecg.common.system.query.QueryGenerator;
import org.jeecg.common.util.oConvertUtils; import org.jeecg.common.util.oConvertUtils;
@ -76,6 +76,29 @@ public class FieldxController extends JeecgController<Fieldx, IFieldxService> {
return Result.OK(pageList); return Result.OK(pageList);
} }
/**
* 通过实体查询字段
*
*/
@AutoLog(value = "字段管理-通过实体查询字段")
@ApiOperation(value="字段管理-通过实体查询字段", notes="字段管理-通过实体查询字段")
@GetMapping(value = "/getFieldByTableId")
public Result<?> getFieldByTableId(@RequestParam(name="tableId",required=true) String tableId) {
if (tableId != null){
List<Fieldx> fieldxList = fieldxService.list(new QueryWrapper<Fieldx>().eq("table_id", tableId));
ArrayList<HashMap> hashMaps = new ArrayList<>();
for (Fieldx fieldx:fieldxList){
HashMap<Object, Object> hashMap = new HashMap<>();
hashMap.put("text",fieldx.getFieldName());
hashMap.put("value",fieldx.getId());
hashMaps.add(hashMap);
}
return Result.OK(hashMaps);
}else return Result.error("未找到数据,请重试");
}
/** /**
* 添加 * 添加
* *
@ -86,6 +109,30 @@ public class FieldxController extends JeecgController<Fieldx, IFieldxService> {
@ApiOperation(value="字段管理-添加", notes="字段管理-添加") @ApiOperation(value="字段管理-添加", notes="字段管理-添加")
@PostMapping(value = "/add") @PostMapping(value = "/add")
public Result<?> add(@RequestBody Fieldx fieldx) { public Result<?> add(@RequestBody Fieldx fieldx) {
if(fieldx.getTableId() ==null){
return Result.error("未选择相应实体,添加失败");
}
if(fieldx.getFieldName() ==null){
return Result.error("未输入中文名称,添加失败");
}
if (fieldx.getFieldEnName() == null){
return Result.error("未输入英文名称,添加失败");
}
if (fieldx.getType() == null){
return Result.error("未选择数据类型,添加失败");
}
if (fieldx.getIsNull() == null){
return Result.error("未选择是否为空,添加失败");
}
if (fieldx.getIsUniqueness() == null){
return Result.error("未选择是否重复,添加失败");
}
if (fieldx.getStatus() == null){
return Result.error("未选择字段状态,添加失败");
}
if (fieldx.getVerisonStatus() == null){
return Result.error("未选择版本状态,添加失败");
}
fieldx.setVerison(1); fieldx.setVerison(1);
if (fieldx.getAssociateTable() != null && fieldx.getAssociateTable().equals(fieldx.getTableId())){ if (fieldx.getAssociateTable() != null && fieldx.getAssociateTable().equals(fieldx.getTableId())){
return Result.error("实体不能关联自身,添加失败"); return Result.error("实体不能关联自身,添加失败");
@ -119,11 +166,32 @@ public class FieldxController extends JeecgController<Fieldx, IFieldxService> {
@ApiOperation(value="字段管理-编辑", notes="字段管理-编辑") @ApiOperation(value="字段管理-编辑", notes="字段管理-编辑")
@PutMapping(value = "/edit") @PutMapping(value = "/edit")
public Result<?> edit(@RequestBody Fieldx fieldx) { public Result<?> edit(@RequestBody Fieldx fieldx) {
if(fieldx.getFieldName() ==null){
return Result.error("未输入中文名称,编辑失败");
}
if (fieldx.getFieldEnName() == null){
return Result.error("未输入英文名称,编辑失败");
}
if (fieldx.getType() == null){
return Result.error("未选择数据类型,编辑失败");
}
if (fieldx.getIsNull() == null){
return Result.error("未选择是否为空,编辑失败");
}
if (fieldx.getIsUniqueness() == null){
return Result.error("未选择是否重复,编辑失败");
}
if (fieldx.getStatus() == null){
return Result.error("未选择字段状态,编辑失败");
}
if (fieldx.getVerisonStatus() == null){
return Result.error("未选择版本状态,编辑失败");
}
if (fieldx.getAssociateTable() != null && fieldx.getAssociateTable().equals(fieldx.getTableId())){ if (fieldx.getAssociateTable() != null && fieldx.getAssociateTable().equals(fieldx.getTableId())){
return Result.error("实体不能关联自身,编辑失败"); return Result.error("实体不能关联自身,编辑失败");
} }
if (fieldx.getTableId() != null){ if (fieldx.getTableId() != null){
List<Fieldx> fieldxList = fieldxService.list(new QueryWrapper<Fieldx>().eq("table_id", fieldx.getTableId())); List<Fieldx> fieldxList = fieldxService.list(new QueryWrapper<Fieldx>().eq("table_id", fieldx.getTableId()).ne("id",fieldx.getId()));
for (Fieldx fieldx1 : fieldxList){ for (Fieldx fieldx1 : fieldxList){
if (fieldx1.getFieldName().equals(fieldx.getFieldName())){ if (fieldx1.getFieldName().equals(fieldx.getFieldName())){
return Result.error("编辑失败,所属实体已有该中文名称"); return Result.error("编辑失败,所属实体已有该中文名称");
@ -151,8 +219,13 @@ public class FieldxController extends JeecgController<Fieldx, IFieldxService> {
@ApiOperation(value="字段管理-通过id删除", notes="字段管理-通过id删除") @ApiOperation(value="字段管理-通过id删除", notes="字段管理-通过id删除")
@DeleteMapping(value = "/delete") @DeleteMapping(value = "/delete")
public Result<?> delete(@RequestParam(name="id",required=true) String id) { public Result<?> delete(@RequestParam(name="id",required=true) String id) {
List<Fieldx> fieldxList = fieldxService.list(new QueryWrapper<Fieldx>().eq("associate_field", id));
if (!fieldxList.isEmpty()){
return Result.error("该字段已被关联,不能删除");
}
Fieldx fieldx = fieldxService.getById(id); Fieldx fieldx = fieldxService.getById(id);
fieldxService.removeById(id); fieldxService.removeById(id);
// 更新sql语句
tablexService.updateSql(fieldx.getTableId(),createSql(fieldx.getTableId())); tablexService.updateSql(fieldx.getTableId(),createSql(fieldx.getTableId()));
return Result.OK("删除成功!"); return Result.OK("删除成功!");
} }

@ -150,7 +150,15 @@ public class TablexController extends JeecgController<Tablex, ITablexService> {
@ApiOperation(value="实体表-通过id删除", notes="实体表-通过id删除") @ApiOperation(value="实体表-通过id删除", notes="实体表-通过id删除")
@DeleteMapping(value = "/delete") @DeleteMapping(value = "/delete")
public Result<?> delete(@RequestParam(name="id",required=true) String id) { public Result<?> delete(@RequestParam(name="id",required=true) String id) {
tablexService.removeById(id); List<Fieldx> fieldxList = fieldxService.list(new QueryWrapper<Fieldx>().eq("table_id", id));
if (!fieldxList.isEmpty()){
return Result.error("该表内已有字段,不能删除");
}
List<Fieldx> fieldxList1 = fieldxService.list(new QueryWrapper<Fieldx>().eq("associate_table", id));
if (!fieldxList1.isEmpty()){
return Result.error("该表已被关联,不能删除");
}
// tablexService.removeById(id);
return Result.OK("删除成功!"); return Result.OK("删除成功!");
} }

Loading…
Cancel
Save