parent
b553cfc4aa
commit
0ed0392f9a
@ -0,0 +1,171 @@
|
||||
package org.jeecg.modules.ai.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.ai.entity.YsDirectoryMaterialRelation;
|
||||
import org.jeecg.modules.ai.service.IYsDirectoryMaterialRelationService;
|
||||
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description: 预审事项和预审材料关系表
|
||||
* @Author: jeecg-boot
|
||||
* @Date: 2023-12-08
|
||||
* @Version: V1.0
|
||||
*/
|
||||
@Api(tags="预审事项和预审材料关系表")
|
||||
@RestController
|
||||
@RequestMapping("/ai/ysDirectoryMaterialRelation")
|
||||
@Slf4j
|
||||
public class YsDirectoryMaterialRelationController extends JeecgController<YsDirectoryMaterialRelation, IYsDirectoryMaterialRelationService> {
|
||||
@Autowired
|
||||
private IYsDirectoryMaterialRelationService ysDirectoryMaterialRelationService;
|
||||
|
||||
/**
|
||||
* 分页列表查询
|
||||
*
|
||||
* @param ysDirectoryMaterialRelation
|
||||
* @param pageNo
|
||||
* @param pageSize
|
||||
* @param req
|
||||
* @return
|
||||
*/
|
||||
@AutoLog(value = "预审事项和预审材料关系表-分页列表查询")
|
||||
@ApiOperation(value="预审事项和预审材料关系表-分页列表查询", notes="预审事项和预审材料关系表-分页列表查询")
|
||||
@GetMapping(value = "/list")
|
||||
public Result<?> queryPageList(YsDirectoryMaterialRelation ysDirectoryMaterialRelation,
|
||||
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
||||
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
||||
HttpServletRequest req) {
|
||||
QueryWrapper<YsDirectoryMaterialRelation> queryWrapper = QueryGenerator.initQueryWrapper(ysDirectoryMaterialRelation, req.getParameterMap());
|
||||
Page<YsDirectoryMaterialRelation> page = new Page<YsDirectoryMaterialRelation>(pageNo, pageSize);
|
||||
IPage<YsDirectoryMaterialRelation> pageList = ysDirectoryMaterialRelationService.page(page, queryWrapper);
|
||||
return Result.OK(pageList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加
|
||||
*
|
||||
* @param ysDirectoryMaterialRelation
|
||||
* @return
|
||||
*/
|
||||
@AutoLog(value = "预审事项和预审材料关系表-添加")
|
||||
@ApiOperation(value="预审事项和预审材料关系表-添加", notes="预审事项和预审材料关系表-添加")
|
||||
@PostMapping(value = "/add")
|
||||
public Result<?> add(@RequestBody YsDirectoryMaterialRelation ysDirectoryMaterialRelation) {
|
||||
ysDirectoryMaterialRelationService.save(ysDirectoryMaterialRelation);
|
||||
return Result.OK("添加成功!");
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑
|
||||
*
|
||||
* @param ysDirectoryMaterialRelation
|
||||
* @return
|
||||
*/
|
||||
@AutoLog(value = "预审事项和预审材料关系表-编辑")
|
||||
@ApiOperation(value="预审事项和预审材料关系表-编辑", notes="预审事项和预审材料关系表-编辑")
|
||||
@PutMapping(value = "/edit")
|
||||
public Result<?> edit(@RequestBody YsDirectoryMaterialRelation ysDirectoryMaterialRelation) {
|
||||
ysDirectoryMaterialRelationService.updateById(ysDirectoryMaterialRelation);
|
||||
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) {
|
||||
ysDirectoryMaterialRelationService.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.ysDirectoryMaterialRelationService.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) {
|
||||
YsDirectoryMaterialRelation ysDirectoryMaterialRelation = ysDirectoryMaterialRelationService.getById(id);
|
||||
if(ysDirectoryMaterialRelation==null) {
|
||||
return Result.error("未找到对应数据");
|
||||
}
|
||||
return Result.OK(ysDirectoryMaterialRelation);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出excel
|
||||
*
|
||||
* @param request
|
||||
* @param ysDirectoryMaterialRelation
|
||||
*/
|
||||
@RequestMapping(value = "/exportXls")
|
||||
public ModelAndView exportXls(HttpServletRequest request, YsDirectoryMaterialRelation ysDirectoryMaterialRelation) {
|
||||
return super.exportXls(request, ysDirectoryMaterialRelation, YsDirectoryMaterialRelation.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, YsDirectoryMaterialRelation.class);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,171 @@
|
||||
package org.jeecg.modules.ai.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.ai.entity.YsEventType;
|
||||
import org.jeecg.modules.ai.service.IYsEventTypeService;
|
||||
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description: 预审事项类型字典表
|
||||
* @Author: jeecg-boot
|
||||
* @Date: 2023-12-08
|
||||
* @Version: V1.0
|
||||
*/
|
||||
@Api(tags="预审事项类型字典表")
|
||||
@RestController
|
||||
@RequestMapping("/ai/ysEventType")
|
||||
@Slf4j
|
||||
public class YsEventTypeController extends JeecgController<YsEventType, IYsEventTypeService> {
|
||||
@Autowired
|
||||
private IYsEventTypeService ysEventTypeService;
|
||||
|
||||
/**
|
||||
* 分页列表查询
|
||||
*
|
||||
* @param ysEventType
|
||||
* @param pageNo
|
||||
* @param pageSize
|
||||
* @param req
|
||||
* @return
|
||||
*/
|
||||
@AutoLog(value = "预审事项类型字典表-分页列表查询")
|
||||
@ApiOperation(value="预审事项类型字典表-分页列表查询", notes="预审事项类型字典表-分页列表查询")
|
||||
@GetMapping(value = "/list")
|
||||
public Result<?> queryPageList(YsEventType ysEventType,
|
||||
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
||||
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
||||
HttpServletRequest req) {
|
||||
QueryWrapper<YsEventType> queryWrapper = QueryGenerator.initQueryWrapper(ysEventType, req.getParameterMap());
|
||||
Page<YsEventType> page = new Page<YsEventType>(pageNo, pageSize);
|
||||
IPage<YsEventType> pageList = ysEventTypeService.page(page, queryWrapper);
|
||||
return Result.OK(pageList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加
|
||||
*
|
||||
* @param ysEventType
|
||||
* @return
|
||||
*/
|
||||
@AutoLog(value = "预审事项类型字典表-添加")
|
||||
@ApiOperation(value="预审事项类型字典表-添加", notes="预审事项类型字典表-添加")
|
||||
@PostMapping(value = "/add")
|
||||
public Result<?> add(@RequestBody YsEventType ysEventType) {
|
||||
ysEventTypeService.save(ysEventType);
|
||||
return Result.OK("添加成功!");
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑
|
||||
*
|
||||
* @param ysEventType
|
||||
* @return
|
||||
*/
|
||||
@AutoLog(value = "预审事项类型字典表-编辑")
|
||||
@ApiOperation(value="预审事项类型字典表-编辑", notes="预审事项类型字典表-编辑")
|
||||
@PutMapping(value = "/edit")
|
||||
public Result<?> edit(@RequestBody YsEventType ysEventType) {
|
||||
ysEventTypeService.updateById(ysEventType);
|
||||
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) {
|
||||
ysEventTypeService.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.ysEventTypeService.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) {
|
||||
YsEventType ysEventType = ysEventTypeService.getById(id);
|
||||
if(ysEventType==null) {
|
||||
return Result.error("未找到对应数据");
|
||||
}
|
||||
return Result.OK(ysEventType);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出excel
|
||||
*
|
||||
* @param request
|
||||
* @param ysEventType
|
||||
*/
|
||||
@RequestMapping(value = "/exportXls")
|
||||
public ModelAndView exportXls(HttpServletRequest request, YsEventType ysEventType) {
|
||||
return super.exportXls(request, ysEventType, YsEventType.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, YsEventType.class);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,46 @@
|
||||
package org.jeecg.modules.ai.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import java.util.Date;
|
||||
import java.math.BigDecimal;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
import org.jeecg.common.aspect.annotation.Dict;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* @Description: 预审事项和预审材料关系表
|
||||
* @Author: jeecg-boot
|
||||
* @Date: 2023-12-08
|
||||
* @Version: V1.0
|
||||
*/
|
||||
@Data
|
||||
@TableName("ys_directory_material_relation")
|
||||
@Accessors(chain = true)
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@ApiModel(value="ys_directory_material_relation对象", description="预审事项和预审材料关系表")
|
||||
public class YsDirectoryMaterialRelation implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**主键*/
|
||||
@TableId(type = IdType.ASSIGN_ID)
|
||||
@ApiModelProperty(value = "主键")
|
||||
private java.lang.String id;
|
||||
/**预审事项编码*/
|
||||
@Excel(name = "预审事项编码", width = 15)
|
||||
@ApiModelProperty(value = "预审事项编码")
|
||||
private java.lang.String eventCode;
|
||||
/**预审材料编码*/
|
||||
@Excel(name = "预审材料编码", width = 15)
|
||||
@ApiModelProperty(value = "预审材料编码")
|
||||
private java.lang.String materialCode;
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
package org.jeecg.modules.ai.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import java.util.Date;
|
||||
import java.math.BigDecimal;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
import org.jeecg.common.aspect.annotation.Dict;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* @Description: 预审事项类型字典表
|
||||
* @Author: jeecg-boot
|
||||
* @Date: 2023-12-08
|
||||
* @Version: V1.0
|
||||
*/
|
||||
@Data
|
||||
@TableName("ys_event_type")
|
||||
@Accessors(chain = true)
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@ApiModel(value="ys_event_type对象", description="预审事项类型字典表")
|
||||
public class YsEventType implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**主键*/
|
||||
@TableId(type = IdType.ASSIGN_ID)
|
||||
@ApiModelProperty(value = "主键")
|
||||
private java.lang.String id;
|
||||
/**类型名称*/
|
||||
@Excel(name = "类型名称", width = 15)
|
||||
@ApiModelProperty(value = "类型名称")
|
||||
private java.lang.String name;
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package org.jeecg.modules.ai.mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.jeecg.modules.ai.entity.YsDirectoryMaterialRelation;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @Description: 预审事项和预审材料关系表
|
||||
* @Author: jeecg-boot
|
||||
* @Date: 2023-12-08
|
||||
* @Version: V1.0
|
||||
*/
|
||||
public interface YsDirectoryMaterialRelationMapper extends BaseMapper<YsDirectoryMaterialRelation> {
|
||||
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package org.jeecg.modules.ai.mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.jeecg.modules.ai.entity.YsEventType;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @Description: 预审事项类型字典表
|
||||
* @Author: jeecg-boot
|
||||
* @Date: 2023-12-08
|
||||
* @Version: V1.0
|
||||
*/
|
||||
public interface YsEventTypeMapper extends BaseMapper<YsEventType> {
|
||||
|
||||
}
|
@ -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.ai.mapper.YsDirectoryMaterialRelationMapper">
|
||||
|
||||
</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.ai.mapper.YsEventTypeMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,15 @@
|
||||
package org.jeecg.modules.ai.service;
|
||||
|
||||
import org.jeecg.modules.ai.entity.YsDirectoryMaterialRelation;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @Description: 预审事项和预审材料关系表
|
||||
* @Author: jeecg-boot
|
||||
* @Date: 2023-12-08
|
||||
* @Version: V1.0
|
||||
*/
|
||||
public interface IYsDirectoryMaterialRelationService extends IService<YsDirectoryMaterialRelation> {
|
||||
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package org.jeecg.modules.ai.service;
|
||||
|
||||
import org.jeecg.modules.ai.entity.YsEventType;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @Description: 预审事项类型字典表
|
||||
* @Author: jeecg-boot
|
||||
* @Date: 2023-12-08
|
||||
* @Version: V1.0
|
||||
*/
|
||||
public interface IYsEventTypeService extends IService<YsEventType> {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package org.jeecg.modules.ai.service.impl;
|
||||
|
||||
import org.jeecg.modules.ai.entity.YsDirectoryMaterialRelation;
|
||||
import org.jeecg.modules.ai.mapper.YsDirectoryMaterialRelationMapper;
|
||||
import org.jeecg.modules.ai.service.IYsDirectoryMaterialRelationService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
|
||||
/**
|
||||
* @Description: 预审事项和预审材料关系表
|
||||
* @Author: jeecg-boot
|
||||
* @Date: 2023-12-08
|
||||
* @Version: V1.0
|
||||
*/
|
||||
@Service
|
||||
public class YsDirectoryMaterialRelationServiceImpl extends ServiceImpl<YsDirectoryMaterialRelationMapper, YsDirectoryMaterialRelation> implements IYsDirectoryMaterialRelationService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package org.jeecg.modules.ai.service.impl;
|
||||
|
||||
import org.jeecg.modules.ai.entity.YsEventType;
|
||||
import org.jeecg.modules.ai.mapper.YsEventTypeMapper;
|
||||
import org.jeecg.modules.ai.service.IYsEventTypeService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
|
||||
/**
|
||||
* @Description: 预审事项类型字典表
|
||||
* @Author: jeecg-boot
|
||||
* @Date: 2023-12-08
|
||||
* @Version: V1.0
|
||||
*/
|
||||
@Service
|
||||
public class YsEventTypeServiceImpl extends ServiceImpl<YsEventTypeMapper, YsEventType> implements IYsEventTypeService {
|
||||
|
||||
}
|
Loading…
Reference in new issue