mqh提交了导入实体功能

dev
mqh 1 year ago
parent dc94199a1e
commit 35db5e8282
  1. 10
      ant-design-vue-jeecg/src/views/modulex/ModulexList.vue
  2. 556
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/tablex/controller/TablexController.java
  3. 2
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/tablex/mapper/TablexMapper.java
  4. 15
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/tablex/mapper/TablexVoMapper.java
  5. 2
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/tablex/mapper/xml/TablexMapper.xml
  6. 5
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/tablex/mapper/xml/TablexVoMapper.xml
  7. 4
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/tablex/service/ITablexVoService.java
  8. 27
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/tablex/service/impl/ITablexVoServiceImpl.java
  9. 90
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/tablex/vo/TablexVo.java

@ -73,7 +73,9 @@
<a-button type="primary" icon="import">导入模块</a-button> <a-button type="primary" icon="import">导入模块</a-button>
<a-button type="primary" icon="import">导入功能</a-button> <a-button type="primary" icon="import">导入功能</a-button>
<a-button type="primary" icon="import">导入规则</a-button> <a-button type="primary" icon="import">导入规则</a-button>
<a-button type="primary" icon="import">导入实体</a-button> <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="tablexImportExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import">导入实体</a-button>
</a-upload>
<a-button type="primary" icon="import">导入字段</a-button> <a-button type="primary" icon="import">导入字段</a-button>
<a-button @click="fanhui" type="primary" icon="rollback">返回</a-button> <a-button @click="fanhui" type="primary" icon="rollback">返回</a-button>
@ -393,6 +395,7 @@ export default {
deleteBatch: "/modulex/modulex/deleteBatch", deleteBatch: "/modulex/modulex/deleteBatch",
exportXlsUrl: "/modulex/modulex/exportXls", exportXlsUrl: "/modulex/modulex/exportXls",
importExcelUrl: "modulex/modulex/importExcel", importExcelUrl: "modulex/modulex/importExcel",
tablexImportExcelUrl: "tablex/tablex/importExcel",
}, },
dictOptions: {}, dictOptions: {},
@ -418,7 +421,10 @@ export default {
// columnsdataIndex // columnsdataIndex
checkColumn: function () { checkColumn: function () {
return this.columns.map(item => item.title) return this.columns.map(item => item.title)
} },
tablexImportExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.tablexImportExcelUrl}`;
},
}, },
methods: { methods: {
// //

@ -1,9 +1,6 @@
package org.jeecg.modules.tablex.controller; package org.jeecg.modules.tablex.controller;
import java.util.ArrayList; import java.util.*;
import java.util.Arrays;
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;
@ -11,8 +8,13 @@ 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 com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import io.swagger.models.auth.In; import io.swagger.models.auth.In;
import org.apache.commons.lang.StringUtils; import org.apache.commons.lang.StringUtils;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.apache.shiro.SecurityUtils; import org.apache.shiro.SecurityUtils;
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;
@ -60,11 +62,11 @@ import org.jeecg.common.aspect.annotation.AutoLog;
@RequestMapping("/tablex/tablex") @RequestMapping("/tablex/tablex")
@Slf4j @Slf4j
public class TablexController extends JeecgController<Tablex, ITablexService> { public class TablexController extends JeecgController<Tablex, ITablexService> {
@Autowired @Autowired
private ITablexService tablexService; private ITablexService tablexService;
@Autowired @Autowired
private IModulexService modulexService; private IModulexService modulexService;
@Autowired @Autowired
private IFieldxService fieldxService; private IFieldxService fieldxService;
@ -74,258 +76,286 @@ public class TablexController extends JeecgController<Tablex, ITablexService> {
@Autowired @Autowired
private ITablexVoService tablexVoService; private ITablexVoService tablexVoService;
/** /**
* 分页列表查询 * 分页列表查询
* *
* @param tablex * @param tablex
* @param pageNo * @param pageNo
* @param pageSize * @param pageSize
* @param req * @param req
* @return * @return
*/ */
@AutoLog(value = "实体表-分页列表查询") @AutoLog(value = "实体表-分页列表查询")
@ApiOperation(value="实体表-分页列表查询", notes="实体表-分页列表查询") @ApiOperation(value = "实体表-分页列表查询", notes = "实体表-分页列表查询")
@GetMapping(value = "/list") @GetMapping(value = "/list")
public Result<?> queryPageList(Tablex tablex, public Result<?> queryPageList(Tablex tablex,
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo, @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize, @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
HttpServletRequest req) { HttpServletRequest req) {
QueryWrapper<Tablex> queryWrapper = QueryGenerator.initQueryWrapper(tablex, req.getParameterMap()); QueryWrapper<Tablex> queryWrapper = QueryGenerator.initQueryWrapper(tablex, req.getParameterMap());
Page<Tablex> page = new Page<Tablex>(pageNo, pageSize); Page<Tablex> page = new Page<Tablex>(pageNo, pageSize);
IPage<Tablex> pageList = tablexService.page(page, queryWrapper); IPage<Tablex> pageList = tablexService.page(page, queryWrapper);
return Result.OK(pageList); return Result.OK(pageList);
} }
/** /**
* 添加 * 添加
* *
* @param tablex * @param tablex
* @return * @return
*/ */
@AutoLog(value = "实体表-添加") @AutoLog(value = "实体表-添加")
@ApiOperation(value="实体表-添加", notes="实体表-添加") @ApiOperation(value = "实体表-添加", notes = "实体表-添加")
@PostMapping(value = "/add") @PostMapping(value = "/add")
public Result<?> add(@RequestBody Tablex tablex) { public Result<?> add(@RequestBody Tablex tablex) {
List<Tablex> tablexList = tablexService.list(); List<Tablex> tablexList = tablexService.list();
for (Tablex tablex1 : tablexList){ for (Tablex tablex1 : tablexList) {
if (tablex1.getModuleId().equals(tablex.getModuleId())){ if (tablex1.getModuleId().equals(tablex.getModuleId())) {
return Result.error("该模块已有实体,添加失败"); return Result.error("该模块已有实体,添加失败");
} }
} }
if (tablex.getModuleId() != null){ if (tablex.getModuleId() != null) {
Modulex modulex = modulexService.getById(tablex.getModuleId()); Modulex modulex = modulexService.getById(tablex.getModuleId());
tablex.setTableName(modulex.getModuleName()); tablex.setTableName(modulex.getModuleName());
tablex.setTableEnName(modulex.getModuleEnName()); tablex.setTableEnName(modulex.getModuleEnName());
} }
tablex.setVerison(1); tablex.setVerison(1);
tablex.setTableStructure("CREATE TABLE '"+tablex.getTableEnName()+"' ();"); tablex.setTableStructure("CREATE TABLE '" + tablex.getTableEnName() + "' ();");
tablexService.save(tablex); tablexService.save(tablex);
System.err.println(tablex.toString()); System.err.println(tablex.toString());
modulexService.setmodule(tablex.getId(),tablex.getModuleId()); modulexService.setmodule(tablex.getId(), tablex.getModuleId());
return Result.OK("添加成功!"); return Result.OK("添加成功!");
} }
/** /**
* 编辑 * 编辑
* *
* @param tablex * @param tablex
* @return * @return
*/ */
@AutoLog(value = "实体表-编辑") @AutoLog(value = "实体表-编辑")
@ApiOperation(value="实体表-编辑", notes="实体表-编辑") @ApiOperation(value = "实体表-编辑", notes = "实体表-编辑")
@PutMapping(value = "/edit") @PutMapping(value = "/edit")
public Result<?> edit(@RequestBody Tablex tablex) { public Result<?> edit(@RequestBody Tablex tablex) {
tablex.setVerison(tablex.getVerison()+1); tablex.setVerison(tablex.getVerison() + 1);
List<Tablex> tablexList = tablexService.list(); List<Tablex> tablexList = tablexService.list();
for (Tablex tablex1 : tablexList){ for (Tablex tablex1 : tablexList) {
if (tablex1.getModuleId().equals(tablex.getModuleId())){ if (tablex1.getModuleId().equals(tablex.getModuleId())) {
return Result.error("该模块已有实体,编辑失败"); return Result.error("该模块已有实体,编辑失败");
} }
} }
if (tablex.getModuleId() != null){ if (tablex.getModuleId() != null) {
Modulex modulex = modulexService.getById(tablex.getModuleId()); Modulex modulex = modulexService.getById(tablex.getModuleId());
tablex.setTableName(modulex.getModuleName()); tablex.setTableName(modulex.getModuleName());
tablex.setTableEnName(modulex.getModuleEnName()); tablex.setTableEnName(modulex.getModuleEnName());
} }
tablexService.updateById(tablex); tablexService.updateById(tablex);
tablexService.updateSql(tablex.getId(),fieldxController.createSql(tablex.getId())); tablexService.updateSql(tablex.getId(), fieldxController.createSql(tablex.getId()));
return Result.OK("编辑成功!"); return Result.OK("编辑成功!");
} }
/** /**
* 通过id删除 * 通过id删除
* *
* @param id * @param id
* @return * @return
*/ */
@AutoLog(value = "实体表-通过id删除") @AutoLog(value = "实体表-通过id删除")
@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("table_id", id)); List<Fieldx> fieldxList = fieldxService.list(new QueryWrapper<Fieldx>().eq("table_id", id));
if (!fieldxList.isEmpty()){ if (!fieldxList.isEmpty()) {
return Result.error("该表内已有字段,不能删除"); return Result.error("该表内已有字段,不能删除");
} }
List<Fieldx> fieldxList1 = fieldxService.list(new QueryWrapper<Fieldx>().eq("associate_table", id)); List<Fieldx> fieldxList1 = fieldxService.list(new QueryWrapper<Fieldx>().eq("associate_table", id));
if (!fieldxList1.isEmpty()){ if (!fieldxList1.isEmpty()) {
return Result.error("该表已被关联,不能删除"); return Result.error("该表已被关联,不能删除");
} }
tablexService.removeById(id); tablexService.removeById(id);
return Result.OK("删除成功!"); return Result.OK("删除成功!");
} }
/** /**
* 批量删除 * 批量删除
* *
* @param ids * @param ids
* @return * @return
*/ */
@AutoLog(value = "实体表-批量删除") @AutoLog(value = "实体表-批量删除")
@ApiOperation(value="实体表-批量删除", notes="实体表-批量删除") @ApiOperation(value = "实体表-批量删除", notes = "实体表-批量删除")
@DeleteMapping(value = "/deleteBatch") @DeleteMapping(value = "/deleteBatch")
public Result<?> deleteBatch(@RequestParam(name="ids",required=true) String ids) { public Result<?> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
this.tablexService.removeByIds(Arrays.asList(ids.split(","))); this.tablexService.removeByIds(Arrays.asList(ids.split(",")));
return Result.OK("批量删除成功!"); return Result.OK("批量删除成功!");
} }
/** /**
* 通过id查询 * 通过id查询
* *
* @param id * @param id
* @return * @return
*/ */
@AutoLog(value = "实体表-通过id查询") @AutoLog(value = "实体表-通过id查询")
@ApiOperation(value="实体表-通过id查询", notes="实体表-通过id查询") @ApiOperation(value = "实体表-通过id查询", notes = "实体表-通过id查询")
@GetMapping(value = "/queryById") @GetMapping(value = "/queryById")
public Result<?> queryById(@RequestParam(name="id",required=true) String id) { public Result<?> queryById(@RequestParam(name = "id", required = true) String id) {
Tablex tablex = tablexService.getById(id); Tablex tablex = tablexService.getById(id);
if(tablex==null) { if (tablex == null) {
return Result.error("未找到对应数据"); return Result.error("未找到对应数据");
} }
return Result.OK(tablex); return Result.OK(tablex);
} }
/** /**
* 导出excel * 导出excel
* *
* @param request * @param request
* @param tablex * @param tablex
*/ */
@RequestMapping(value = "/exportXls") @RequestMapping(value = "/exportXls")
public ModelAndView exportXls(HttpServletRequest request, Tablex tablex) { public ModelAndView exportXls(HttpServletRequest request, Tablex tablex) {
return super.exportXls(request, tablex, Tablex.class, "实体表"); return super.exportXls(request, tablex, Tablex.class, "实体表");
} }
/** /**
* 通过excel导入数据 * 通过excel导入数据
* *
* @param request * @param file
* @param response * @return
* @return */
*/ @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
@RequestMapping(value = "/importExcel", method = RequestMethod.POST) public Result<?> importExcel(MultipartFile file) {
public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { try {
MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
Map<String, MultipartFile> fileMap = multipartRequest.getFileMap(); LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); // 判断文件是否是表格
String originalFilename = file.getOriginalFilename();
for (Map.Entry<String, MultipartFile> entry : fileMap.entrySet()) { if (StringUtils.isBlank(originalFilename) ||
//获取上传文件对象 (!originalFilename.endsWith("xls") &&
MultipartFile file = entry.getValue(); !originalFilename.endsWith("xlsx"))) {
ImportParams params = new ImportParams(); return Result.error("文件格式不正确");
params.setTitleRows(2);//表格标题行数,默认0 }
params.setHeadRows(1);//表头行数,默认1
params.setNeedSave(true);//是否需要保存上传的Excel,默认为false //获取上传文件对象
ImportParams params = new ImportParams();
// 判断文件是否是表格 params.setTitleRows(2);//表格标题行数,默认0
String originalFilename = file.getOriginalFilename(); params.setHeadRows(1);//表头行数,默认1
if (StringUtils.isBlank(originalFilename) || params.setNeedSave(true);//是否需要保存上传的Excel,默认为false
(!originalFilename.endsWith("xls") && List<TablexVo> list = null;
!originalFilename.endsWith("xlsx"))) { try {
return Result.error("文件格式不正确"); //读取excel数据
} list = ExcelImportUtil.importExcel(file.getInputStream(), TablexVo.class, params);
List<Tablex> list = null; } catch (Exception e) {
try { return Result.error("文件读取失败");
//读取excel数据 }
list = ExcelImportUtil.importExcel(file.getInputStream(), Tablex.class, params); //判断文件中是否存在数据
} catch (Exception e) { if (list == null || list.size() == 0) {
return Result.error("文件读取失败"); return Result.error("Excel数据为空");
} }
//判断文件中是否存在数据 for (TablexVo tablexVo : list) {
if (list == null || list.size() == 0) { //判断当前存入行是否为空值
return Result.error("Excel数据为空"); if (tablexVo.getModuleId() == null &&
} tablexVo.getTableName() == null &&
tablexVo.getTableEnName() == null &&
for (int i = 0; i < list.size(); i++) { tablexVo.getTableStructure() == null &&
//判断当前存入行是否为空值 tablexVo.getStructuralDiagram() == null &&
if (list.size() > 0 && tablexVo.getStatus() == null &&
list.get(i).getId() == null && tablexVo.getVerisonStatus() == null &&
list.get(i).getModuleId() == null && tablexVo.getVerison() == null) continue;
list.get(i).getTableName() == null &&
list.get(i).getTableEnName() == null && //判断版本号长度
list.get(i).getTableStructure() == null && String verison = tablexVo.getVerison();
list.get(i).getStructuralDiagram() == null && if (verison.length() > 5) {
list.get(i).getStatus() == null && return Result.error("导入失败,版本号格式错误");
list.get(i).getVerisonStatus() == null && }
list.get(i).getVerison() == null) continue;
//存入临时表中
//存入临时表中 tablexVoService.save(tablexVo);
tablexVoService.save((TablexVo) list.get(i)); }
}
//从临时表中取出数据
//从临时表中取出数据 List<TablexVo> voList = tablexVoService.list();
List<TablexVo> voList = tablexVoService.list(); //删除临时表中的数据
if (voList == null) { tablexVoService.removeAll(voList);
return Result.error("数据为空");
} if (voList.size() == 0) {
return Result.error("导入失败,数据为空");
List<Tablex> tablexList = new ArrayList<>(); }
for (int i = 0; i < voList.size(); i++) {
//判断对应模块 Tablex tablex = new Tablex();
if (voList.get(i).getModuleId() != null || !voList.get(i).getModuleId().equals("")) { for (int i = 0; i < voList.size(); i++) {
//判断中文名称
if (voList.get(i).getTableName() != null || !voList.get(i).getTableName().equals("")) { String moduleId = voList.get(i).getModuleId();
//判断英文名称 if (moduleId == null || moduleId.equals("")){
if (voList.get(i).getTableEnName() != null || !voList.get(i).getTableEnName().equals("")) { return Result.error("对应模块填写不能为空");
//判断表结构SQL }
if (voList.get(i).getTableStructure() != null || !voList.get(i).getTableStructure().equals("")) { LambdaQueryWrapper<Modulex> queryWrapper = new LambdaQueryWrapper<>();
//判断结构图 queryWrapper.eq(Modulex::getId,moduleId);
if (voList.get(i).getStructuralDiagram() != null || !voList.get(i).getStructuralDiagram().equals("")) { Modulex modulex = modulexService.getOne(queryWrapper);
//判断实体状态 if(modulex == null){
if (voList.get(i).getStatus() != null || !voList.get(i).getStatus().equals("")) { return Result.error("对应模块填写错误");
//判断版本状态 }
if (voList.get(i).getVerisonStatus() != null || !voList.get(i).getVerisonStatus().equals("")){ String modulexId = modulex.getId();
//判断版本号
if (voList.get(i).getVerison() != null || !voList.get(i).getVerison().equals("")){ String status = voList.get(i).getStatus();
String verisonStatus = voList.get(i).getVerisonStatus();
} else {
return Result.error("导入失败,第" + i + 1 + "行的版本号填写错误!"); //判断实体状态
} int statusInt = status.equals("正常") ? 1 : status.equals("停用") ? 0 : status.equals("废弃") ? 9 : 3;
} else { //判断版本状态
return Result.error("导入失败,第" + i + 1 + "行的版本状态填写错误!"); int verisonStatusInt = verisonStatus.equals("当前") ? 1 : verisonStatus.equals("历史") ? 0 : 3;
}
} else { //判断对应模块
return Result.error("导入失败,第" + i + 1 + "行的实体状态填写错误!"); if (modulexId != null && voList.get(i).getModuleId() != null && !voList.get(i).getModuleId().equals("")) {
} //判断中文名称
} else { if (voList.get(i).getTableName() != null && !voList.get(i).getTableName().equals("") && !voList.get(i).getTableName().equals(modulex.getModuleName())) {
return Result.error("导入失败,第" + i + 1 + "行的结构图填写错误!"); //判断英文名称
} if (voList.get(i).getTableEnName() != null && !voList.get(i).getTableEnName().equals("") && !voList.get(i).getTableEnName().equals(modulex.getModuleEnName())) {
} else { //判断实体状态
return Result.error("导入失败,第" + i + 1 + "行的表结构SQL填写错误!"); if (statusInt == 1 || statusInt == 0 || statusInt == 9) {
} //判断版本状态
} else { if (verisonStatusInt == 1 || verisonStatusInt == 0) {
return Result.error("导入失败,第" + i + 1 + "行的英文名称填写错误!"); //判断版本号
} if (voList.get(i).getVerison() != null && !voList.get(i).getVerison().equals("")) {
} else { tablex.setModuleId(voList.get(i).getModuleId());
return Result.error("导入失败,第" + i + 1 + "行的中文名称填写错误!"); tablex.setTableName(voList.get(i).getTableName());
} tablex.setTableEnName(voList.get(i).getTableEnName());
} else { tablex.setTableStructure(voList.get(i).getTableStructure());
return Result.error("导入失败,第" + i + 1 + "行的对应模块填写错误!"); tablex.setStructuralDiagram(voList.get(i).getStructuralDiagram());
} tablex.setCreateBy(loginUser.getRealname());
} tablex.setStatus(statusInt);
tablex.setVerisonStatus(verisonStatusInt);
} tablex.setVerison(Integer.valueOf(voList.get(i).getVerison()));
return super.importExcel(request, response, Tablex.class);
} //保存到真实表中
tablexService.save(tablex);
} else {
return Result.error("导入失败,第" + i + 1 + "行的版本号填写错误!");
}
} else {
return Result.error("导入失败,第" + i + 1 + "行的版本状态填写错误!");
}
} else {
return Result.error("导入失败,第" + i + 1 + "行的实体状态填写错误!");
}
} else {
return Result.error("导入失败,第" + i + 1 + "行的英文名称填写错误!");
}
} else {
return Result.error("导入失败,第" + i + 1 + "行的中文名称填写错误!");
}
} else {
return Result.error("导入失败,第" + i + 1 + "行的对应模块填写错误!");
}
}
} catch (Exception e) {
return Result.error("文件导入失败");
}
return Result.OK("文件导入成功!");
}
}

@ -2,6 +2,7 @@ package org.jeecg.modules.tablex.mapper;
import java.util.List; import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Update; import org.apache.ibatis.annotations.Update;
import org.checkerframework.checker.guieffect.qual.UI; import org.checkerframework.checker.guieffect.qual.UI;
@ -14,6 +15,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
* @Date: 2023-04-10 * @Date: 2023-04-10
* @Version: V1.0 * @Version: V1.0
*/ */
@Mapper
public interface TablexMapper extends BaseMapper<Tablex> { public interface TablexMapper extends BaseMapper<Tablex> {
@Update("update tablex set table_structure = #{sql} where id = #{tableId}") @Update("update tablex set table_structure = #{sql} where id = #{tableId}")

@ -0,0 +1,15 @@
package org.jeecg.modules.tablex.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.jeecg.modules.tablex.vo.TablexVo;
/**
* @author Administrator
* @description 针对表tablex_vo的数据库操作Mapper
* @createDate 2023-07-10 19:52:43
* @Entity generator.domain.TablexVo
*/
@Mapper
public interface TablexVoMapper extends BaseMapper<TablexVo> {
}

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace=".tablex.mapper.TablexMapper"> <mapper namespace="org.jeecg.modules.tablex.mapper.TablexMapper">
</mapper> </mapper>

@ -0,0 +1,5 @@
<?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.jeecg.modules.tablex.mapper.TablexVoMapper">
</mapper>

@ -4,6 +4,8 @@ import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.tablex.entity.Tablex; import org.jeecg.modules.tablex.entity.Tablex;
import org.jeecg.modules.tablex.vo.TablexVo; import org.jeecg.modules.tablex.vo.TablexVo;
import java.util.List;
/** /**
* @Description: 实体表 * @Description: 实体表
* @Author: jeecg-boot * @Author: jeecg-boot
@ -11,5 +13,5 @@ import org.jeecg.modules.tablex.vo.TablexVo;
* @Version: V1.0 * @Version: V1.0
*/ */
public interface ITablexVoService extends IService<TablexVo> { public interface ITablexVoService extends IService<TablexVo> {
void removeAll(List<TablexVo> voList);
} }

@ -0,0 +1,27 @@
package org.jeecg.modules.tablex.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.tablex.entity.Tablex;
import org.jeecg.modules.tablex.mapper.TablexVoMapper;
import org.jeecg.modules.tablex.service.ITablexVoService;
import org.jeecg.modules.tablex.vo.TablexVo;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* @author Administrator
* @description 针对表tablex_vo的数据库操作Service实现
* @createDate 2023-07-10 19:52:43
*/
@Service
public class ITablexVoServiceImpl extends ServiceImpl<TablexVoMapper, TablexVo> implements ITablexVoService{
@Override
public void removeAll(List<TablexVo> voList) {
for (TablexVo tablexVo : voList){
removeById(tablexVo.getId());
}
}
}

@ -0,0 +1,90 @@
package org.jeecg.modules.tablex.vo;
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: 实体表
* @Author: jeecg-boot
* @Date: 2023-04-10
* @Version: V1.0
*/
@Data
@TableName("tablex_vo")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
public class TablexVo implements Serializable {
private static final long serialVersionUID = 1L;
/**主键*/
@TableId(type = IdType.ASSIGN_ID)
@ApiModelProperty(value = "主键")
private java.lang.String id;
/**对应模块id*/
@Excel(name = "对应模块id", width = 15, dictTable = "modulex", dicText = "module_name", dicCode = "id")
@Dict(dictTable = "modulex", dicText = "module_name", dicCode = "id")
@ApiModelProperty(value = "对应模块id")
private java.lang.String moduleId;
/**中文名称*/
@Excel(name = "中文名称", width = 15)
@ApiModelProperty(value = "中文名称")
private java.lang.String tableName;
/**英文名称*/
@Excel(name = "英文名称", width = 15)
@ApiModelProperty(value = "英文名称")
private java.lang.String tableEnName;
/**表结构SQL*/
@Excel(name = "表结构SQL", width = 15)
@ApiModelProperty(value = "表结构SQL")
private java.lang.String tableStructure;
/**结构图*/
@Excel(name = "结构图", width = 15)
@ApiModelProperty(value = "结构图")
private java.lang.String structuralDiagram;
/**创建人*/
@ApiModelProperty(value = "创建人")
@Dict(dictTable = "sys_user", dicText = "username", dicCode = "id")
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.lang.String createTime;
/**修改人*/
@ApiModelProperty(value = "修改人")
@Dict(dictTable = "sys_user", dicText = "username", dicCode = "id")
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.lang.String updateTime;
/**实体状态*/
@Excel(name = "实体状态", width = 15,dicCode = "a_status")
@Dict(dicCode = "a_status")
@ApiModelProperty(value = "实体状态")
private java.lang.String status;
/**版本状态*/
@Excel(name = "版本状态", width = 15,dicCode = "verison_status")
@Dict(dicCode = "verison_status")
@ApiModelProperty(value = "版本状态")
private java.lang.String verisonStatus;
/**版本号*/
@Excel(name = "版本号", width = 15)
@ApiModelProperty(value = "版本号")
private java.lang.String verison;
}
Loading…
Cancel
Save