From 8f9879e10376a892aefeffe19c842503e630a8b6 Mon Sep 17 00:00:00 2001 From: yangjun <1173114630@qq.com> Date: Fri, 10 Nov 2023 23:46:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=BB=9F=E8=AE=A1=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../KcExportConfigTpkwcqkjzglxController.java | 19 ++ .../entity/KcExportConfigTpkwcqkjzglx.java | 2 + .../KcExportConfigTpkwcqkjzglxMapper.java | 4 + .../xml/KcExportConfigTpkwcqkjzglxMapper.xml | 23 +++ .../IKcExportConfigTpkwcqkjzglxService.java | 4 + ...KcExportConfigTpkwcqkjzglxServiceImpl.java | 52 ++++++ .../controller/KcZwtksfInfoController.java | 174 ++++++++++++++++++ .../kc/kcZwtksfInfo/entity/KcZwtksfInfo.java | 68 +++++++ .../mapper/KcZwtksfInfoMapper.java | 17 ++ .../mapper/xml/KcZwtksfInfoMapper.xml | 5 + .../service/IKcZwtksfInfoService.java | 14 ++ .../service/impl/KcZwtksfInfoServiceImpl.java | 19 ++ 12 files changed, 401 insertions(+) create mode 100644 jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/controller/KcZwtksfInfoController.java create mode 100644 jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/entity/KcZwtksfInfo.java create mode 100644 jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/mapper/KcZwtksfInfoMapper.java create mode 100644 jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/mapper/xml/KcZwtksfInfoMapper.xml create mode 100644 jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/service/IKcZwtksfInfoService.java create mode 100644 jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/service/impl/KcZwtksfInfoServiceImpl.java diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/controller/KcExportConfigTpkwcqkjzglxController.java b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/controller/KcExportConfigTpkwcqkjzglxController.java index 0aa9b5f3..981cecf9 100644 --- a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/controller/KcExportConfigTpkwcqkjzglxController.java +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/controller/KcExportConfigTpkwcqkjzglxController.java @@ -457,4 +457,23 @@ public class KcExportConfigTpkwcqkjzglxController extends JeecgController> getListByCode(KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx, + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, + HttpServletRequest req) { + Page page = new Page<>(pageNo, pageSize); + IPage pageList = kcExportConfigTpkwcqkjzglxService.getListByCode(page, kcExportConfigTpkwcqkjzglx); + return Result.OK(pageList); + } + + @ApiOperation(value="听课人员统计图表", notes="听课人员统计图表") + @GetMapping(value = "/getBarlist") + public Result getBarlist(KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx,HttpServletRequest req) { + List pageList = kcExportConfigTpkwcqkjzglxService.getBarlist(kcExportConfigTpkwcqkjzglx); + return Result.OK(pageList); + } + } diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/entity/KcExportConfigTpkwcqkjzglx.java b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/entity/KcExportConfigTpkwcqkjzglx.java index 52059e90..6e589bb6 100644 --- a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/entity/KcExportConfigTpkwcqkjzglx.java +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/entity/KcExportConfigTpkwcqkjzglx.java @@ -124,6 +124,8 @@ public class KcExportConfigTpkwcqkjzglx implements Serializable { private String znum; @TableField(exist = false) private String sjtkcs; + @TableField(exist = false) + private String code; } diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/mapper/KcExportConfigTpkwcqkjzglxMapper.java b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/mapper/KcExportConfigTpkwcqkjzglxMapper.java index e6554527..8abc6926 100644 --- a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/mapper/KcExportConfigTpkwcqkjzglxMapper.java +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/mapper/KcExportConfigTpkwcqkjzglxMapper.java @@ -29,4 +29,8 @@ public interface KcExportConfigTpkwcqkjzglxMapper extends BaseMapper getTjinfoList(KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx1); void updateJzgzzzt(KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx); + + IPage getListByCode(Page page, @Param("kcExportConfigTpkwcqkjzglx")KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx); + + List getBarlist(KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx); } diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/mapper/xml/KcExportConfigTpkwcqkjzglxMapper.xml b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/mapper/xml/KcExportConfigTpkwcqkjzglxMapper.xml index 9806ad38..757f1e78 100644 --- a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/mapper/xml/KcExportConfigTpkwcqkjzglxMapper.xml +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/mapper/xml/KcExportConfigTpkwcqkjzglxMapper.xml @@ -64,6 +64,29 @@ + + + + + update kc_export_config_tpkwcqkjzglx t,(select gh,zzzt,mc from (select t1.gh,t1.xm,t1.zzzt,t2.mc from xxhbuser t1 left join xxhbjzgdqzt t2 on t1.ZZZT = t2.dm)a)b set t.zt = b.mc where t.gh = b.gh and t.xqxn = #{xqxn} diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/service/IKcExportConfigTpkwcqkjzglxService.java b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/service/IKcExportConfigTpkwcqkjzglxService.java index 8e43443e..18ee6e9b 100644 --- a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/service/IKcExportConfigTpkwcqkjzglxService.java +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/service/IKcExportConfigTpkwcqkjzglxService.java @@ -28,4 +28,8 @@ public interface IKcExportConfigTpkwcqkjzglxService extends IService> getTjlist(KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx); void updateJzgzzzt(KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx); + + IPage getListByCode(Page page, KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx); + + List getBarlist(KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx); } diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/service/impl/KcExportConfigTpkwcqkjzglxServiceImpl.java b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/service/impl/KcExportConfigTpkwcqkjzglxServiceImpl.java index bb7af067..036dd325 100644 --- a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/service/impl/KcExportConfigTpkwcqkjzglxServiceImpl.java +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/config/service/impl/KcExportConfigTpkwcqkjzglxServiceImpl.java @@ -255,4 +255,56 @@ public class KcExportConfigTpkwcqkjzglxServiceImpl extends ServiceImpl getListByCode(Page page, KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx) { + LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); + //-------------获取当前登陆人是否是管理员角色,如果不是都按照教务秘书处理--------------------------- + List roleList = sysBaseApi.getRolesByUsername(sysUser.getUsername()); + String adminRole = "1";//0 admin 1教务秘书 + for(String role :roleList){ + if(StringUtils.equals("admin",role)){ + adminRole = "0"; + break; + } + } + if(StringUtils.equals("1",adminRole)){ + QueryWrapper uqw = new QueryWrapper<>(); + uqw.eq("gh",sysUser.getUsername()); + uqw.last("limit 1"); + Xxhbuser xxhbUser = xxhbuserService.getOne(uqw); + kcExportConfigTpkwcqkjzglx.setDwmc(xxhbUser.getDwmc()); + } + KcSysConfig kcSysConfig = kcSysConfigService.getById("1"); + kcExportConfigTpkwcqkjzglx.setXqxn(kcSysConfig.getFlag1()); + + IPage infolist = baseMapper.getListByCode(page,kcExportConfigTpkwcqkjzglx); + return infolist; + } + + @Override + public List getBarlist(KcExportConfigTpkwcqkjzglx kcExportConfigTpkwcqkjzglx) { + LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); + //-------------获取当前登陆人是否是管理员角色,如果不是都按照教务秘书处理--------------------------- + List roleList = sysBaseApi.getRolesByUsername(sysUser.getUsername()); + String adminRole = "1";//0 admin 1教务秘书 + for(String role :roleList){ + if(StringUtils.equals("admin",role)){ + adminRole = "0"; + break; + } + } + if(StringUtils.equals("1",adminRole)){ + QueryWrapper uqw = new QueryWrapper<>(); + uqw.eq("gh",sysUser.getUsername()); + uqw.last("limit 1"); + Xxhbuser xxhbUser = xxhbuserService.getOne(uqw); + kcExportConfigTpkwcqkjzglx.setDwmc(xxhbUser.getDwmc()); + } + KcSysConfig kcSysConfig = kcSysConfigService.getById("1"); + kcExportConfigTpkwcqkjzglx.setXqxn(kcSysConfig.getFlag1()); + + List infolist = baseMapper.getBarlist(kcExportConfigTpkwcqkjzglx); + return infolist; + } } diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/controller/KcZwtksfInfoController.java b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/controller/KcZwtksfInfoController.java new file mode 100644 index 00000000..3aa5b1fd --- /dev/null +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/controller/KcZwtksfInfoController.java @@ -0,0 +1,174 @@ +package org.jeecg.modules.kc.kcZwtksfInfo.controller; + +import java.util.Arrays; +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.jeecg.common.api.vo.Result; +import org.jeecg.common.system.query.QueryGenerator; +import org.jeecg.common.util.oConvertUtils; +import org.jeecg.modules.kc.kcZwtksfInfo.entity.KcZwtksfInfo; +import org.jeecg.modules.kc.kcZwtksfInfo.service.IKcZwtksfInfoService; + +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.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; +import org.apache.shiro.authz.annotation.RequiresPermissions; + + /** + * @Description: kc_zwtksf_info + * @Author: jeecg-boot + * @Date: 2023-11-10 + * @Version: V1.0 + */ +@Api(tags="kc_zwtksf_info") +@RestController +@RequestMapping("/kcZwtksfInfo/kcZwtksfInfo") +@Slf4j +public class KcZwtksfInfoController extends JeecgController { + @Autowired + private IKcZwtksfInfoService kcZwtksfInfoService; + + /** + * 分页列表查询 + * + * @param kcZwtksfInfo + * @param pageNo + * @param pageSize + * @param req + * @return + */ + //@AutoLog(value = "kc_zwtksf_info-分页列表查询") + @ApiOperation(value="kc_zwtksf_info-分页列表查询", notes="kc_zwtksf_info-分页列表查询") + @GetMapping(value = "/list") + public Result> queryPageList(KcZwtksfInfo kcZwtksfInfo, + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, + HttpServletRequest req) { + QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(kcZwtksfInfo, req.getParameterMap()); + Page page = new Page(pageNo, pageSize); + IPage pageList = kcZwtksfInfoService.page(page, queryWrapper); + return Result.OK(pageList); + } + + /** + * 添加 + * + * @param kcZwtksfInfo + * @return + */ + @AutoLog(value = "kc_zwtksf_info-添加") + @ApiOperation(value="kc_zwtksf_info-添加", notes="kc_zwtksf_info-添加") + @PostMapping(value = "/add") + public Result add(@RequestBody KcZwtksfInfo kcZwtksfInfo) { + kcZwtksfInfoService.save(kcZwtksfInfo); + return Result.OK("添加成功!"); + } + + /** + * 编辑 + * + * @param kcZwtksfInfo + * @return + */ + @AutoLog(value = "kc_zwtksf_info-编辑") + @ApiOperation(value="kc_zwtksf_info-编辑", notes="kc_zwtksf_info-编辑") + @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) + public Result edit(@RequestBody KcZwtksfInfo kcZwtksfInfo) { + kcZwtksfInfoService.updateById(kcZwtksfInfo); + return Result.OK("编辑成功!"); + } + + /** + * 通过id删除 + * + * @param id + * @return + */ + @AutoLog(value = "kc_zwtksf_info-通过id删除") + @ApiOperation(value="kc_zwtksf_info-通过id删除", notes="kc_zwtksf_info-通过id删除") + @DeleteMapping(value = "/delete") + public Result delete(@RequestParam(name="id",required=true) String id) { + kcZwtksfInfoService.removeById(id); + return Result.OK("删除成功!"); + } + + /** + * 批量删除 + * + * @param ids + * @return + */ + @AutoLog(value = "kc_zwtksf_info-批量删除") + @ApiOperation(value="kc_zwtksf_info-批量删除", notes="kc_zwtksf_info-批量删除") + @DeleteMapping(value = "/deleteBatch") + public Result deleteBatch(@RequestParam(name="ids",required=true) String ids) { + this.kcZwtksfInfoService.removeByIds(Arrays.asList(ids.split(","))); + return Result.OK("批量删除成功!"); + } + + /** + * 通过id查询 + * + * @param id + * @return + */ + //@AutoLog(value = "kc_zwtksf_info-通过id查询") + @ApiOperation(value="kc_zwtksf_info-通过id查询", notes="kc_zwtksf_info-通过id查询") + @GetMapping(value = "/queryById") + public Result queryById(@RequestParam(name="id",required=true) String id) { + KcZwtksfInfo kcZwtksfInfo = kcZwtksfInfoService.getById(id); + if(kcZwtksfInfo==null) { + return Result.error("未找到对应数据"); + } + return Result.OK(kcZwtksfInfo); + } + + /** + * 导出excel + * + * @param request + * @param kcZwtksfInfo + */ + @RequiresPermissions("kcZwtksfInfo:kc_zwtksf_info:exportXls") + @RequestMapping(value = "/exportXls") + public ModelAndView exportXls(HttpServletRequest request, KcZwtksfInfo kcZwtksfInfo) { + return super.exportXls(request, kcZwtksfInfo, KcZwtksfInfo.class, "kc_zwtksf_info"); + } + + /** + * 通过excel导入数据 + * + * @param request + * @param response + * @return + */ + @RequiresPermissions("kcZwtksfInfo:kc_zwtksf_info:importExcel") + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) + public Result importExcel(HttpServletRequest request, HttpServletResponse response) { + return super.importExcel(request, response, KcZwtksfInfo.class); + } + +} diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/entity/KcZwtksfInfo.java b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/entity/KcZwtksfInfo.java new file mode 100644 index 00000000..998d9f2d --- /dev/null +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/entity/KcZwtksfInfo.java @@ -0,0 +1,68 @@ +package org.jeecg.modules.kc.kcZwtksfInfo.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 com.baomidou.mybatisplus.annotation.TableLogic; +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: kc_zwtksf_info + * @Author: jeecg-boot + * @Date: 2023-11-10 + * @Version: V1.0 + */ +@Data +@TableName("kc_zwtksf_info") +@Accessors(chain = true) +@EqualsAndHashCode(callSuper = false) +@ApiModel(value="kc_zwtksf_info对象", description="kc_zwtksf_info") +public class KcZwtksfInfo implements Serializable { + private static final long serialVersionUID = 1L; + + /**id*/ + @TableId(type = IdType.ASSIGN_ID) + @ApiModelProperty(value = "id") + private java.lang.String id; + /**创建人*/ + @ApiModelProperty(value = "创建人") + private java.lang.String createBy; + /**创建日期*/ + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") + @DateTimeFormat(pattern="yyyy-MM-dd") + @ApiModelProperty(value = "创建日期") + private java.util.Date createTime; + /**更新人*/ + @ApiModelProperty(value = "更新人") + private java.lang.String updateBy; + /**更新日期*/ + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") + @DateTimeFormat(pattern="yyyy-MM-dd") + @ApiModelProperty(value = "更新日期") + private java.util.Date updateTime; + /**所属部门*/ + @ApiModelProperty(value = "所属部门") + private java.lang.String sysOrgCode; + /**职位*/ + @Excel(name = "职位", width = 15) + @ApiModelProperty(value = "职位") + @Dict(dicCode = "pdfzw") + private java.lang.String zw; + /**听课身份*/ + @Excel(name = "听课身份", width = 15) + @ApiModelProperty(value = "听课身份") + @Dict(dicCode = "tpkwcqkjzglx") + private java.lang.String tksf; +} diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/mapper/KcZwtksfInfoMapper.java b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/mapper/KcZwtksfInfoMapper.java new file mode 100644 index 00000000..b23f6a19 --- /dev/null +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/mapper/KcZwtksfInfoMapper.java @@ -0,0 +1,17 @@ +package org.jeecg.modules.kc.kcZwtksfInfo.mapper; + +import java.util.List; + +import org.apache.ibatis.annotations.Param; +import org.jeecg.modules.kc.kcZwtksfInfo.entity.KcZwtksfInfo; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @Description: kc_zwtksf_info + * @Author: jeecg-boot + * @Date: 2023-11-10 + * @Version: V1.0 + */ +public interface KcZwtksfInfoMapper extends BaseMapper { + +} diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/mapper/xml/KcZwtksfInfoMapper.xml b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/mapper/xml/KcZwtksfInfoMapper.xml new file mode 100644 index 00000000..53d25cad --- /dev/null +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/mapper/xml/KcZwtksfInfoMapper.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/service/IKcZwtksfInfoService.java b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/service/IKcZwtksfInfoService.java new file mode 100644 index 00000000..bd13665b --- /dev/null +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/service/IKcZwtksfInfoService.java @@ -0,0 +1,14 @@ +package org.jeecg.modules.kc.kcZwtksfInfo.service; + +import org.jeecg.modules.kc.kcZwtksfInfo.entity.KcZwtksfInfo; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * @Description: kc_zwtksf_info + * @Author: jeecg-boot + * @Date: 2023-11-10 + * @Version: V1.0 + */ +public interface IKcZwtksfInfoService extends IService { + +} diff --git a/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/service/impl/KcZwtksfInfoServiceImpl.java b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/service/impl/KcZwtksfInfoServiceImpl.java new file mode 100644 index 00000000..19c1eea6 --- /dev/null +++ b/jeecg-module-main/src/main/java/org/jeecg/modules/kc/kcZwtksfInfo/service/impl/KcZwtksfInfoServiceImpl.java @@ -0,0 +1,19 @@ +package org.jeecg.modules.kc.kcZwtksfInfo.service.impl; + +import org.jeecg.modules.kc.kcZwtksfInfo.entity.KcZwtksfInfo; +import org.jeecg.modules.kc.kcZwtksfInfo.mapper.KcZwtksfInfoMapper; +import org.jeecg.modules.kc.kcZwtksfInfo.service.IKcZwtksfInfoService; +import org.springframework.stereotype.Service; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * @Description: kc_zwtksf_info + * @Author: jeecg-boot + * @Date: 2023-11-10 + * @Version: V1.0 + */ +@Service +public class KcZwtksfInfoServiceImpl extends ServiceImpl implements IKcZwtksfInfoService { + +}