From a6954d841cf6aeed8c3ed7e7d409d25bedc318e6 Mon Sep 17 00:00:00 2001 From: Lius <Lius2225@163.com> Date: 星期五, 22 十一月 2024 16:04:46 +0800 Subject: [PATCH] update --- lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcImplementLedgersSub.java | 120 ++++++++++ lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/IMdcImplementLedgersService.java | 14 + lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/impl/MdcImplementLedgersServiceImpl.java | 18 + lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/impl/MdcImplementLedgersSubServiceImpl.java | 18 + lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcImplementLedgersSubMapper.xml | 5 lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/controller/MdcImplementLedgersSubController.java | 153 +++++++++++++ lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcImplementLedgersSubMapper.java | 14 + lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/IMdcImplementLedgersSubService.java | 14 + lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcImplementLedgers.java | 126 +++++++++++ lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcImplementLedgersMapper.xml | 5 lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/controller/MdcImplementLedgersController.java | 153 +++++++++++++ lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcImplementLedgersMapper.java | 14 + 12 files changed, 654 insertions(+), 0 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/controller/MdcImplementLedgersController.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/controller/MdcImplementLedgersController.java new file mode 100644 index 0000000..b13441b --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/controller/MdcImplementLedgersController.java @@ -0,0 +1,153 @@ +package org.jeecg.modules.mdc.controller; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import lombok.extern.slf4j.Slf4j; +import org.jeecg.common.api.vo.Result; +import org.jeecg.common.aspect.annotation.AutoLog; +import org.jeecg.common.system.base.controller.JeecgController; +import org.jeecg.common.system.query.QueryGenerator; +import org.jeecg.modules.mdc.entity.MdcImplementLedgers; +import org.jeecg.modules.mdc.service.IMdcImplementLedgersService; +import org.springframework.web.bind.annotation.*; +import org.springframework.web.servlet.ModelAndView; + +import javax.annotation.Resource; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.Arrays; + +/** + * @Description: 瀹炴柦鍙拌处 + * @Author: lius + * @Date: 2024-11-22 + * @Version: V1.0 + */ +@Slf4j +@Api(tags = "瀹炴柦鍙拌处") +@RestController +@RequestMapping("/mdc/mdcImplementLedgers") +public class MdcImplementLedgersController extends JeecgController<MdcImplementLedgers, IMdcImplementLedgersService> { + + @Resource + private IMdcImplementLedgersService mdcImplementLedgersService; + + /** + * 鍒嗛〉鍒楄〃鏌ヨ + * + * @param mdcImplementLedgers + * @param pageNo + * @param pageSize + * @param req + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处-鍒嗛〉鍒楄〃鏌ヨ") + @ApiOperation(value = "瀹炴柦鍙拌处-鍒嗛〉鍒楄〃鏌ヨ", notes = "瀹炴柦鍙拌处-鍒嗛〉鍒楄〃鏌ヨ") + @GetMapping(value = "/list") + public Result<?> queryPageList(MdcImplementLedgers mdcImplementLedgers, + @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo, + @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, + HttpServletRequest req) { + QueryWrapper<MdcImplementLedgers> queryWrapper = QueryGenerator.initQueryWrapper(mdcImplementLedgers, req.getParameterMap()); + Page<MdcImplementLedgers> page = new Page<MdcImplementLedgers>(pageNo, pageSize); + IPage<MdcImplementLedgers> pageList = mdcImplementLedgersService.page(page, queryWrapper); + return Result.OK(pageList); + } + + /** + * 娣诲姞 + * + * @param mdcImplementLedgers + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处-娣诲姞") + @ApiOperation(value = "瀹炴柦鍙拌处-娣诲姞", notes = "瀹炴柦鍙拌处-娣诲姞") + @PostMapping(value = "/add") + public Result<?> add(@RequestBody MdcImplementLedgers mdcImplementLedgers) { + mdcImplementLedgersService.save(mdcImplementLedgers); + return Result.OK("娣诲姞鎴愬姛锛�"); + } + + /** + * 缂栬緫 + * + * @param mdcImplementLedgers + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处-缂栬緫") + @ApiOperation(value = "瀹炴柦鍙拌处-缂栬緫", notes = "瀹炴柦鍙拌处-缂栬緫") + @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST}) + public Result<?> edit(@RequestBody MdcImplementLedgers mdcImplementLedgers) { + mdcImplementLedgersService.updateById(mdcImplementLedgers); + return Result.OK("缂栬緫鎴愬姛!"); + } + + /** + * 閫氳繃id鍒犻櫎 + * + * @param id + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处-閫氳繃id鍒犻櫎") + @ApiOperation(value = "瀹炴柦鍙拌处-閫氳繃id鍒犻櫎", notes = "瀹炴柦鍙拌处-閫氳繃id鍒犻櫎") + @DeleteMapping(value = "/delete") + public Result<?> delete(@RequestParam(name = "id", required = true) String id) { + mdcImplementLedgersService.removeById(id); + return Result.OK("鍒犻櫎鎴愬姛!"); + } + + /** + * 鎵归噺鍒犻櫎 + * + * @param ids + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处-鎵归噺鍒犻櫎") + @ApiOperation(value = "瀹炴柦鍙拌处-鎵归噺鍒犻櫎", notes = "瀹炴柦鍙拌处-鎵归噺鍒犻櫎") + @DeleteMapping(value = "/deleteBatch") + public Result<?> deleteBatch(@RequestParam(name = "ids", required = true) String ids) { + this.mdcImplementLedgersService.removeByIds(Arrays.asList(ids.split(","))); + return Result.OK("鎵归噺鍒犻櫎鎴愬姛锛�"); + } + + /** + * 閫氳繃id鏌ヨ + * + * @param id + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处-閫氳繃id鏌ヨ") + @ApiOperation(value = "瀹炴柦鍙拌处-閫氳繃id鏌ヨ", notes = "瀹炴柦鍙拌处-閫氳繃id鏌ヨ") + @GetMapping(value = "/queryById") + public Result<?> queryById(@RequestParam(name = "id", required = true) String id) { + MdcImplementLedgers mdcImplementLedgers = mdcImplementLedgersService.getById(id); + return Result.OK(mdcImplementLedgers); + } + + /** + * 瀵煎嚭excel + * + * @param request + * @param mdcImplementLedgers + */ + @RequestMapping(value = "/exportXls") + public ModelAndView exportXls(HttpServletRequest request, MdcImplementLedgers mdcImplementLedgers) { + return super.exportXls(request, mdcImplementLedgers, MdcImplementLedgers.class, "瀹炴柦鍙拌处"); + } + + /** + * 閫氳繃excel瀵煎叆鏁版嵁 + * + * @param request + * @param response + * @return + */ + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) + public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { + return super.importExcel(request, response, MdcImplementLedgers.class); + } + +} diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/controller/MdcImplementLedgersSubController.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/controller/MdcImplementLedgersSubController.java new file mode 100644 index 0000000..0a87356 --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/controller/MdcImplementLedgersSubController.java @@ -0,0 +1,153 @@ +package org.jeecg.modules.mdc.controller; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import lombok.extern.slf4j.Slf4j; +import org.jeecg.common.api.vo.Result; +import org.jeecg.common.aspect.annotation.AutoLog; +import org.jeecg.common.system.base.controller.JeecgController; +import org.jeecg.common.system.query.QueryGenerator; +import org.jeecg.modules.mdc.entity.MdcImplementLedgersSub; +import org.jeecg.modules.mdc.service.IMdcImplementLedgersSubService; +import org.springframework.web.bind.annotation.*; +import org.springframework.web.servlet.ModelAndView; + +import javax.annotation.Resource; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.Arrays; + +/** + * @Description: 瀹炴柦鍙拌处瀛愯〃 + * @Author: lius + * @Date: 2024-11-22 + * @Version: V1.0 + */ +@Slf4j +@Api(tags = "瀹炴柦鍙拌处瀛愯〃") +@RestController +@RequestMapping("/mdc/mdcImplementLedgersSub") +public class MdcImplementLedgersSubController extends JeecgController<MdcImplementLedgersSub, IMdcImplementLedgersSubService> { + + @Resource + private IMdcImplementLedgersSubService mdcImplementLedgersSubService; + + /** + * 鍒嗛〉鍒楄〃鏌ヨ + * + * @param mdcImplementLedgersSub + * @param pageNo + * @param pageSize + * @param req + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处瀛愯〃-鍒嗛〉鍒楄〃鏌ヨ") + @ApiOperation(value = "瀹炴柦鍙拌处瀛愯〃-鍒嗛〉鍒楄〃鏌ヨ", notes = "瀹炴柦鍙拌处瀛愯〃-鍒嗛〉鍒楄〃鏌ヨ") + @GetMapping(value = "/list") + public Result<?> queryPageList(MdcImplementLedgersSub mdcImplementLedgersSub, + @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo, + @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, + HttpServletRequest req) { + QueryWrapper<MdcImplementLedgersSub> queryWrapper = QueryGenerator.initQueryWrapper(mdcImplementLedgersSub, req.getParameterMap()); + Page<MdcImplementLedgersSub> page = new Page<MdcImplementLedgersSub>(pageNo, pageSize); + IPage<MdcImplementLedgersSub> pageList = mdcImplementLedgersSubService.page(page, queryWrapper); + return Result.OK(pageList); + } + + /** + * 娣诲姞 + * + * @param mdcImplementLedgersSub + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处瀛愯〃-娣诲姞") + @ApiOperation(value = "瀹炴柦鍙拌处瀛愯〃-娣诲姞", notes = "瀹炴柦鍙拌处瀛愯〃-娣诲姞") + @PostMapping(value = "/add") + public Result<?> add(@RequestBody MdcImplementLedgersSub mdcImplementLedgersSub) { + mdcImplementLedgersSubService.save(mdcImplementLedgersSub); + return Result.OK("娣诲姞鎴愬姛锛�"); + } + + /** + * 缂栬緫 + * + * @param mdcImplementLedgersSub + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处瀛愯〃-缂栬緫") + @ApiOperation(value = "瀹炴柦鍙拌处瀛愯〃-缂栬緫", notes = "瀹炴柦鍙拌处瀛愯〃-缂栬緫") + @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST}) + public Result<?> edit(@RequestBody MdcImplementLedgersSub mdcImplementLedgersSub) { + mdcImplementLedgersSubService.updateById(mdcImplementLedgersSub); + return Result.OK("缂栬緫鎴愬姛!"); + } + + /** + * 閫氳繃id鍒犻櫎 + * + * @param id + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处瀛愯〃-閫氳繃id鍒犻櫎") + @ApiOperation(value = "瀹炴柦鍙拌处瀛愯〃-閫氳繃id鍒犻櫎", notes = "瀹炴柦鍙拌处瀛愯〃-閫氳繃id鍒犻櫎") + @DeleteMapping(value = "/delete") + public Result<?> delete(@RequestParam(name = "id", required = true) String id) { + mdcImplementLedgersSubService.removeById(id); + return Result.OK("鍒犻櫎鎴愬姛!"); + } + + /** + * 鎵归噺鍒犻櫎 + * + * @param ids + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处瀛愯〃-鎵归噺鍒犻櫎") + @ApiOperation(value = "瀹炴柦鍙拌处瀛愯〃-鎵归噺鍒犻櫎", notes = "瀹炴柦鍙拌处瀛愯〃-鎵归噺鍒犻櫎") + @DeleteMapping(value = "/deleteBatch") + public Result<?> deleteBatch(@RequestParam(name = "ids", required = true) String ids) { + this.mdcImplementLedgersSubService.removeByIds(Arrays.asList(ids.split(","))); + return Result.OK("鎵归噺鍒犻櫎鎴愬姛锛�"); + } + + /** + * 閫氳繃id鏌ヨ + * + * @param id + * @return + */ + @AutoLog(value = "瀹炴柦鍙拌处瀛愯〃-閫氳繃id鏌ヨ") + @ApiOperation(value = "瀹炴柦鍙拌处瀛愯〃-閫氳繃id鏌ヨ", notes = "瀹炴柦鍙拌处瀛愯〃-閫氳繃id鏌ヨ") + @GetMapping(value = "/queryById") + public Result<?> queryById(@RequestParam(name = "id", required = true) String id) { + MdcImplementLedgersSub mdcImplementLedgersSub = mdcImplementLedgersSubService.getById(id); + return Result.OK(mdcImplementLedgersSub); + } + + /** + * 瀵煎嚭excel + * + * @param request + * @param mdcImplementLedgersSub + */ + @RequestMapping(value = "/exportXls") + public ModelAndView exportXls(HttpServletRequest request, MdcImplementLedgersSub mdcImplementLedgersSub) { + return super.exportXls(request, mdcImplementLedgersSub, MdcImplementLedgersSub.class, "瀹炴柦鍙拌处瀛愯〃"); + } + + /** + * 閫氳繃excel瀵煎叆鏁版嵁 + * + * @param request + * @param response + * @return + */ + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) + public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { + return super.importExcel(request, response, MdcImplementLedgersSub.class); + } + +} diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcImplementLedgers.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcImplementLedgers.java new file mode 100644 index 0000000..752a9ec --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcImplementLedgers.java @@ -0,0 +1,126 @@ +package org.jeecg.modules.mdc.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +import org.jeecg.common.system.base.entity.JeecgEntity; +import org.jeecgframework.poi.excel.annotation.Excel; + +import java.io.Serializable; + +/** + * @Description: 瀹炴柦鍙拌处 + * @Author: lius + * @Date: 2024-11-22 + * @Version: V1.0 + */ +@Data +@TableName("mdc_implement_ledgers") +@EqualsAndHashCode(callSuper = false) +@Accessors(chain = true) +@ApiModel(value = "mdc_implement_ledgers瀵硅薄", description = "瀹炴柦鍙拌处") +public class MdcImplementLedgers extends JeecgEntity implements Serializable { + + private static final long serialVersionUID = 2358588221013473385L; + + /** + * 鍏徃 + */ + @Excel(name = "鍏徃", width = 15) + @ApiModelProperty(value = "鍏徃") + private String companyName; + /** + * 杞﹂棿 + */ + @Excel(name = "杞﹂棿", width = 15) + @ApiModelProperty(value = "杞﹂棿") + private String productionName; + /** + * 宸ユ + */ + @Excel(name = "宸ユ", width = 15) + @ApiModelProperty(value = "宸ユ") + private String sectionName; + /** + * 璁惧缂栧彿 + */ + @Excel(name = "璁惧缂栧彿", width = 15) + @ApiModelProperty(value = "璁惧缂栧彿") + private String equipmentId; + /** + * 璁惧鍚嶇О + */ + @Excel(name = "璁惧鍚嶇О", width = 15) + @ApiModelProperty(value = "璁惧鍚嶇О") + private String equipmentName; + /** + * 璁惧鍨嬪彿 + */ + @Excel(name = "璁惧鍨嬪彿", width = 15) + @ApiModelProperty(value = "璁惧鍨嬪彿") + private String equipmentModel; + /** + * 璁惧绯荤粺绫诲瀷 + */ + @Excel(name = "璁惧绯荤粺绫诲瀷", width = 15) + @ApiModelProperty(value = "璁惧绯荤粺绫诲瀷") + private String controlSystem; + /** + * 璁惧璐d换浜� + */ + @Excel(name = "璁惧璐d换浜�", width = 15) + @ApiModelProperty(value = "璁惧璐d换浜�") + private String responsible; + /** + * 璁惧瀹夋斁浣嶇疆 + */ + @Excel(name = "璁惧瀹夋斁浣嶇疆", width = 15) + @ApiModelProperty(value = "璁惧瀹夋斁浣嶇疆") + private String equipmentPosition; + /** + * 璁惧瀹夋斁鏃堕棿 + */ + @Excel(name = "璁惧瀹夋斁鏃堕棿", width = 15) + @ApiModelProperty(value = "璁惧瀹夋斁鏃堕棿") + private String placementTime; + /** + * MDC瀹夎鎯呭喌(鏄�/鍚�) + */ + @Excel(name = "MDC瀹夎鎯呭喌(鏄�/鍚�)", width = 15) + @ApiModelProperty(value = "MDC瀹夎鎯呭喌(鏄�/鍚�)") + private String isMdcInstall; + /** + * MDC纭欢瀹夎(鏄�/鍚�) + */ + @Excel(name = "MDC纭欢瀹夎(鏄�/鍚�)", width = 15) + @ApiModelProperty(value = "MDC纭欢瀹夎(鏄�/鍚�)") + private String isMdcHardwareInstall; + /** + * MDC瀹夎鏃堕棿 + */ + @Excel(name = "MDC瀹夎鏃堕棿", width = 15) + @ApiModelProperty(value = "MDC瀹夎鏃堕棿") + private String mdcInstallTime; + /** + * DNC瀹夎鎯呭喌(鏄�/鍚�) + */ + @Excel(name = "DNC瀹夎鎯呭喌(鏄�/鍚�)", width = 15) + @ApiModelProperty(value = "DNC瀹夎鎯呭喌(鏄�/鍚�)") + private String isDncInstall; + /** + * DNC纭欢瀹夎(鏄�/鍚�) + */ + @Excel(name = "DNC纭欢瀹夎(鏄�/鍚�)", width = 15) + @ApiModelProperty(value = "DNC纭欢瀹夎(鏄�/鍚�)") + private String isDncHardwareInstall; + /** + * DNC瀹夎鏃堕棿 + */ + @Excel(name = "DNC瀹夎鏃堕棿", width = 15) + @ApiModelProperty(value = "DNC瀹夎鏃堕棿") + private String dncInstallTime; + +} diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcImplementLedgersSub.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcImplementLedgersSub.java new file mode 100644 index 0000000..3d4966c --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcImplementLedgersSub.java @@ -0,0 +1,120 @@ +package org.jeecg.modules.mdc.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +import org.jeecg.common.system.base.entity.JeecgEntity; +import org.jeecgframework.poi.excel.annotation.Excel; + +import java.io.Serializable; + +/** + * @Description: 瀹炴柦鍙拌处瀛愯〃 + * @Author: lius + * @Date: 2024-11-22 + * @Version: V1.0 + */ +@Data +@TableName("mdc_implement_ledgers_sub") +@EqualsAndHashCode(callSuper = false) +@Accessors(chain = true) +@ApiModel(value = "mdc_implement_ledgers_sub瀵硅薄", description = "瀹炴柦鍙拌处瀛愯〃") +public class MdcImplementLedgersSub extends JeecgEntity implements Serializable { + + private static final long serialVersionUID = -7841117446908412876L; + + /** + * 瀹炴柦鍙拌处id + */ + @Excel(name = "瀹炴柦鍙拌处id", width = 15) + @ApiModelProperty(value = "瀹炴柦鍙拌处id") + private String implementId; + /** + * 鍙樻洿鏃堕棿 + */ + @Excel(name = "鍙樻洿鏃堕棿", width = 15) + @ApiModelProperty(value = "鍙樻洿鏃堕棿") + private String alterTime; + /** + * 鍙樻洿鍘熷洜 + */ + @Excel(name = "鍙樻洿鍘熷洜", width = 15) + @ApiModelProperty(value = "鍙樻洿鍘熷洜") + private String alterReason; + /** + * 璁惧浣嶇疆纭 + */ + @Excel(name = "璁惧浣嶇疆纭", width = 15) + @ApiModelProperty(value = "璁惧浣嶇疆纭") + private String locationStatus; + /** + * 璁惧缃戠粶纭 + */ + @Excel(name = "璁惧缃戠粶纭", width = 15) + @ApiModelProperty(value = "璁惧缃戠粶纭") + private String networkStatus; + /** + * MDC鍔熻兘纭 + */ + @Excel(name = "MDC鍔熻兘纭", width = 15) + @ApiModelProperty(value = "MDC鍔熻兘纭") + private String mdcFunctionStatus; + /** + * MDC妯″潡纭 + */ + @Excel(name = "MDC妯″潡纭", width = 15) + @ApiModelProperty(value = "MDC妯″潡纭") + private String mdcModuleStatus; + /** + * DNC鍔熻兘纭 + */ + @Excel(name = "DNC鍔熻兘纭", width = 15) + @ApiModelProperty(value = "DNC鍔熻兘纭") + private String dncFunctionStatus; + /** + * DNC妯″潡纭 + */ + @Excel(name = "DNC妯″潡纭", width = 15) + @ApiModelProperty(value = "DNC妯″潡纭") + private String dncModuleStatus; + /** + * 鍙嶉浜� + */ + @Excel(name = "鍙嶉浜�", width = 15) + @ApiModelProperty(value = "鍙嶉浜�") + private String feedbackBy; + /** + * 鍙嶉鏃堕棿 + */ + @Excel(name = "鍙嶉鏃堕棿", width = 15) + @ApiModelProperty(value = "鍙嶉鏃堕棿") + private String feedbackTime; + /** + * 缁存姢浜哄憳 + */ + @Excel(name = "缁存姢浜哄憳", width = 15) + @ApiModelProperty(value = "缁存姢浜哄憳") + private String maintenanceBy; + /** + * 澶勭悊鏃堕棿 + */ + @Excel(name = "澶勭悊鏃堕棿", width = 15) + @ApiModelProperty(value = "澶勭悊鏃堕棿") + private String maintenanceTime; + /** + * 澶勭悊杩囩▼鎻忚堪 + */ + @Excel(name = "澶勭悊杩囩▼鎻忚堪", width = 15) + @ApiModelProperty(value = "澶勭悊杩囩▼鎻忚堪") + private String maintenanceRemark; + /** + * 澶勭悊缁撴灉 + */ + @Excel(name = "澶勭悊缁撴灉", width = 15) + @ApiModelProperty(value = "澶勭悊缁撴灉") + private String maintenanceResult; + +} diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcImplementLedgersMapper.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcImplementLedgersMapper.java new file mode 100644 index 0000000..ff4fb23 --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcImplementLedgersMapper.java @@ -0,0 +1,14 @@ +package org.jeecg.modules.mdc.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.jeecg.modules.mdc.entity.MdcImplementLedgers; + +/** + * @Description: 瀹炴柦鍙拌处 + * @Author: lius + * @Date: 2024-11-22 + * @Version: V1.0 + */ +public interface MdcImplementLedgersMapper extends BaseMapper<MdcImplementLedgers> { + +} diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcImplementLedgersSubMapper.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcImplementLedgersSubMapper.java new file mode 100644 index 0000000..1cda0d9 --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/MdcImplementLedgersSubMapper.java @@ -0,0 +1,14 @@ +package org.jeecg.modules.mdc.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.jeecg.modules.mdc.entity.MdcImplementLedgersSub; + +/** + * @Description: 瀹炴柦鍙拌处瀛愯〃 + * @Author: lius + * @Date: 2024-11-22 + * @Version: V1.0 + */ +public interface MdcImplementLedgersSubMapper extends BaseMapper<MdcImplementLedgersSub> { + +} diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcImplementLedgersMapper.xml b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcImplementLedgersMapper.xml new file mode 100644 index 0000000..b633ccd --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcImplementLedgersMapper.xml @@ -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.mdc.mapper.MdcImplementLedgersMapper"> + +</mapper> \ No newline at end of file diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcImplementLedgersSubMapper.xml b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcImplementLedgersSubMapper.xml new file mode 100644 index 0000000..14ba19e --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcImplementLedgersSubMapper.xml @@ -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.mdc.mapper.MdcImplementLedgersSubMapper"> + +</mapper> \ No newline at end of file diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/IMdcImplementLedgersService.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/IMdcImplementLedgersService.java new file mode 100644 index 0000000..a12e288 --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/IMdcImplementLedgersService.java @@ -0,0 +1,14 @@ +package org.jeecg.modules.mdc.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import org.jeecg.modules.mdc.entity.MdcImplementLedgers; + +/** + * @Description: 瀹炴柦鍙拌处 + * @Author: lius + * @Date: 2024-11-22 + * @Version: V1.0 + */ +public interface IMdcImplementLedgersService extends IService<MdcImplementLedgers> { + +} diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/IMdcImplementLedgersSubService.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/IMdcImplementLedgersSubService.java new file mode 100644 index 0000000..4d4e08d --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/IMdcImplementLedgersSubService.java @@ -0,0 +1,14 @@ +package org.jeecg.modules.mdc.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import org.jeecg.modules.mdc.entity.MdcImplementLedgersSub; + +/** + * @Description: 瀹炴柦鍙拌处瀛愯〃 + * @Author: lius + * @Date: 2024-11-22 + * @Version: V1.0 + */ +public interface IMdcImplementLedgersSubService extends IService<MdcImplementLedgersSub> { + +} diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/impl/MdcImplementLedgersServiceImpl.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/impl/MdcImplementLedgersServiceImpl.java new file mode 100644 index 0000000..b9af006 --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/impl/MdcImplementLedgersServiceImpl.java @@ -0,0 +1,18 @@ +package org.jeecg.modules.mdc.service.impl; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.jeecg.modules.mdc.entity.MdcImplementLedgers; +import org.jeecg.modules.mdc.mapper.MdcImplementLedgersMapper; +import org.jeecg.modules.mdc.service.IMdcImplementLedgersService; +import org.springframework.stereotype.Service; + +/** + * @Description: 瀹炴柦鍙拌处 + * @Author: lius + * @Date: 2024-11-22 + * @Version: V1.0 + */ +@Service +public class MdcImplementLedgersServiceImpl extends ServiceImpl<MdcImplementLedgersMapper, MdcImplementLedgers> implements IMdcImplementLedgersService { + +} diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/impl/MdcImplementLedgersSubServiceImpl.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/impl/MdcImplementLedgersSubServiceImpl.java new file mode 100644 index 0000000..13c6745 --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/impl/MdcImplementLedgersSubServiceImpl.java @@ -0,0 +1,18 @@ +package org.jeecg.modules.mdc.service.impl; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.jeecg.modules.mdc.entity.MdcImplementLedgersSub; +import org.jeecg.modules.mdc.mapper.MdcImplementLedgersSubMapper; +import org.jeecg.modules.mdc.service.IMdcImplementLedgersSubService; +import org.springframework.stereotype.Service; + +/** + * @Description: 瀹炴柦鍙拌处瀛愯〃 + * @Author: lius + * @Date: 2024-11-22 + * @Version: V1.0 + */ +@Service +public class MdcImplementLedgersSubServiceImpl extends ServiceImpl<MdcImplementLedgersSubMapper, MdcImplementLedgersSub> implements IMdcImplementLedgersSubService { + +} -- Gitblit v1.9.3