Преглед на файлове

Merge remote-tracking branch 'origin/master'

丁治程 преди 1 година
родител
ревизия
0be1bde856

+ 36 - 5
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContent/controller/CmmsSpotcheckContentController.java

@@ -10,8 +10,14 @@ 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.cmmsSpotcheckContent.convert.CmmsSpotcheckContentConvert;
+import org.jeecg.modules.cmmsSpotcheckContent.dto.CmmsSpotcheckContentAddDTO;
 import org.jeecg.modules.cmmsSpotcheckContent.entity.CmmsSpotcheckContent;
 import org.jeecg.modules.cmmsSpotcheckContent.service.ICmmsSpotcheckContentService;
+import org.jeecg.modules.cmmsSpotcheckContentItem.entity.CmmsSpotcheckContentItem;
+import org.jeecg.modules.cmmsSpotcheckContentItem.service.ICmmsSpotcheckContentItemService;
+import org.jeecg.modules.util.AutoCodeUtil;
+import org.jeecg.modules.util.UserConstants;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.*;
 import org.springframework.web.servlet.ModelAndView;
@@ -19,6 +25,10 @@ import org.springframework.web.servlet.ModelAndView;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 import java.util.Arrays;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.stream.Collectors;
 
 /**
  * @Description: 点检内容
@@ -33,6 +43,10 @@ import java.util.Arrays;
 public class CmmsSpotcheckContentController extends JeecgController<CmmsSpotcheckContent, ICmmsSpotcheckContentService> {
 	@Autowired
 	private ICmmsSpotcheckContentService cmmsSpotcheckContentService;
+	@Autowired
+	private AutoCodeUtil autoCodeUtil;
+	@Autowired
+	private ICmmsSpotcheckContentItemService spotcheckContentItemService;
 
 	 /**
 	  * 如果要修改该点检内容状态为“启用”,那该设备的其他点检项都停掉
@@ -86,17 +100,26 @@ public class CmmsSpotcheckContentController extends JeecgController<CmmsSpotchec
 	}
 
 	/**
-	 *   添加
+	 *   点检内容——新增
 	 *
-	 * @param cmmsSpotcheckContent
+	 * @param dto
 	 * @return
 	 */
-	@AutoLog(value = "点检内容-添加")
-	@ApiOperation(value="点检内容-添加", notes="点检内容-添加")
+	@AutoLog(value = "点检内容——新增")
+	@ApiOperation(value="点检内容——新增", notes="点检内容——新增——同时新增多个点检项-点检内容")
 	//@RequiresPermissions("org.jeecg.modules:ems_cmms_spotcheck_content:add")
 	@PostMapping(value = "/add")
-	public Result<String> add(@RequestBody CmmsSpotcheckContent cmmsSpotcheckContent) {
+	public Result<String> add(@RequestBody CmmsSpotcheckContentAddDTO dto) {
+		CmmsSpotcheckContent cmmsSpotcheckContent = CmmsSpotcheckContentConvert.INSTANCE.convert(dto);
+		if (cmmsSpotcheckContent.getContentcode() == null || "".equals(cmmsSpotcheckContent.getContentcode())) {
+			cmmsSpotcheckContent.setContentcode(autoCodeUtil.genSerialCode(UserConstants.CMMSSPOTCHECKCONTENT_CODE, null));
+		}
 		cmmsSpotcheckContentService.save(cmmsSpotcheckContent);
+		List<CmmsSpotcheckContentItem> contentItemList = dto.getSpotcheckContentItemList();
+		if (contentItemList != null && contentItemList.size() > 0) {
+			contentItemList.stream().map(i->i.setSpotcheckcontid(cmmsSpotcheckContent.getId())).collect(Collectors.toList());
+			spotcheckContentItemService.saveBatch(contentItemList);
+		}
 		return Result.OK("添加成功!");
 	}
 
@@ -126,6 +149,9 @@ public class CmmsSpotcheckContentController extends JeecgController<CmmsSpotchec
 	//@RequiresPermissions("org.jeecg.modules:ems_cmms_spotcheck_content:delete")
 	@DeleteMapping(value = "/delete")
 	public Result<String> delete(@RequestParam(name="id",required=true) String id) {
+		Map<String, Object> columnMap = new HashMap<>();
+		columnMap.put("spotcheckcontid",id);
+		spotcheckContentItemService.removeByMap(columnMap);
 		cmmsSpotcheckContentService.removeById(id);
 		return Result.OK("删除成功!");
 	}
@@ -141,6 +167,11 @@ public class CmmsSpotcheckContentController extends JeecgController<CmmsSpotchec
 	//@RequiresPermissions("org.jeecg.modules:ems_cmms_spotcheck_content:deleteBatch")
 	@DeleteMapping(value = "/deleteBatch")
 	public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
+		for (String id: Arrays.asList(ids.split(","))){
+			Map<String, Object> columnMap = new HashMap<>();
+			columnMap.put("spotcheckcontid",id);
+			spotcheckContentItemService.removeByMap(columnMap);
+		}
 		this.cmmsSpotcheckContentService.removeByIds(Arrays.asList(ids.split(",")));
 		return Result.OK("批量删除成功!");
 	}

+ 2 - 1
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContent/convert/CmmsSpotcheckContentConvert.java

@@ -1,6 +1,7 @@
 package org.jeecg.modules.cmmsSpotcheckContent.convert;
 
 
+import org.jeecg.modules.cmmsSpotcheckContent.dto.CmmsSpotcheckContentAddDTO;
 import org.jeecg.modules.cmmsSpotcheckContent.entity.CmmsSpotcheckContent;
 import org.mapstruct.Mapper;
 import org.mapstruct.ReportingPolicy;
@@ -14,6 +15,6 @@ public interface CmmsSpotcheckContentConvert {
 
     CmmsSpotcheckContentConvert INSTANCE = Mappers.getMapper(CmmsSpotcheckContentConvert.class);
 
-    CmmsSpotcheckContent convert(CmmsSpotcheckContent cmmsSpotcheckContent, String itemcode, String equipmenttreeid);
+    CmmsSpotcheckContent convert(CmmsSpotcheckContentAddDTO dto);
 
 }

+ 65 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContent/dto/CmmsSpotcheckContentAddDTO.java

@@ -0,0 +1,65 @@
+package org.jeecg.modules.cmmsSpotcheckContent.dto;
+
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import org.jeecg.common.aspect.annotation.Dict;
+import org.jeecg.modules.cmmsSpotcheckContentItem.entity.CmmsSpotcheckContentItem;
+import org.jeecgframework.poi.excel.annotation.Excel;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.io.Serializable;
+import java.util.List;
+
+@Data
+public class CmmsSpotcheckContentAddDTO  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 contentcode;
+    /**点检内容名称*/
+    @Excel(name = "点检内容名称", width = 15)
+    @ApiModelProperty(value = "点检内容名称")
+    private java.lang.String contentname;
+    /**设备id*/
+    @Excel(name = "设备id", width = 15, dictTable = "ems_tpm_equipment", dicText = "equipmentname", dicCode = "id")
+    @Dict(dictTable = "ems_tpm_equipment", dicText = "equipmentname", dicCode = "id")
+    @ApiModelProperty(value = "设备id")
+    private java.lang.String equipmentid;
+    /**状态:启用:0、禁用:1*/
+    @Excel(name = "状态:启用:0、禁用:1", width = 15, dicCode = "spotcheck_content_status")
+    @Dict(dicCode = "spotcheck_content_status")
+    @ApiModelProperty(value = "状态:启用:0、禁用:1")
+    private java.lang.String status;
+    /**创建人*/
+    @ApiModelProperty(value = "创建人")
+    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.util.Date createTime;
+    /**更新人*/
+    @ApiModelProperty(value = "更新人")
+    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.util.Date updateTime;
+    /**所属部门*/
+    @ApiModelProperty(value = "所属部门")
+    private java.lang.String sysOrgCode;
+
+    /**点检内容-点检项集合*/
+    private List<CmmsSpotcheckContentItem> spotcheckContentItemList ;
+}

+ 177 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContentItem/controller/CmmsSpotcheckContentItemController.java

@@ -0,0 +1,177 @@
+package org.jeecg.modules.cmmsSpotcheckContentItem.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.cmmsSpotcheckContentItem.entity.CmmsSpotcheckContentItem;
+import org.jeecg.modules.cmmsSpotcheckContentItem.service.ICmmsSpotcheckContentItemService;
+
+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:   2024-01-15
+ * @Version: V1.0
+ */
+@Api(tags="点检内容-点检项")
+@RestController
+@RequestMapping("/cmmsSpotcheckContentItem/cmmsSpotcheckContentItem")
+@Slf4j
+public class CmmsSpotcheckContentItemController extends JeecgController<CmmsSpotcheckContentItem, ICmmsSpotcheckContentItemService> {
+	@Autowired
+	private ICmmsSpotcheckContentItemService cmmsSpotcheckContentItemService;
+	
+	/**
+	 * 分页列表查询
+	 *
+	 * @param cmmsSpotcheckContentItem
+	 * @param pageNo
+	 * @param pageSize
+	 * @param req
+	 * @return
+	 */
+	//@AutoLog(value = "点检内容-点检项-分页列表查询")
+	@ApiOperation(value="点检内容-点检项-分页列表查询", notes="点检内容-点检项-分页列表查询")
+	@GetMapping(value = "/list")
+	public Result<IPage<CmmsSpotcheckContentItem>> queryPageList(CmmsSpotcheckContentItem cmmsSpotcheckContentItem,
+								   @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
+								   @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
+								   HttpServletRequest req) {
+		QueryWrapper<CmmsSpotcheckContentItem> queryWrapper = QueryGenerator.initQueryWrapper(cmmsSpotcheckContentItem, req.getParameterMap());
+		Page<CmmsSpotcheckContentItem> page = new Page<CmmsSpotcheckContentItem>(pageNo, pageSize);
+		IPage<CmmsSpotcheckContentItem> pageList = cmmsSpotcheckContentItemService.page(page, queryWrapper);
+		return Result.OK(pageList);
+	}
+	
+	/**
+	 *   添加
+	 *
+	 * @param cmmsSpotcheckContentItem
+	 * @return
+	 */
+	@AutoLog(value = "点检内容-点检项-添加")
+	@ApiOperation(value="点检内容-点检项-添加", notes="点检内容-点检项-添加")
+	//@RequiresPermissions("org.jeecg.modules:ems_cmms_spotcheck_content_item:add")
+	@PostMapping(value = "/add")
+	public Result<String> add(@RequestBody CmmsSpotcheckContentItem cmmsSpotcheckContentItem) {
+		cmmsSpotcheckContentItemService.save(cmmsSpotcheckContentItem);
+		return Result.OK("添加成功!");
+	}
+	
+	/**
+	 *  编辑
+	 *
+	 * @param cmmsSpotcheckContentItem
+	 * @return
+	 */
+	@AutoLog(value = "点检内容-点检项-编辑")
+	@ApiOperation(value="点检内容-点检项-编辑", notes="点检内容-点检项-编辑")
+	//@RequiresPermissions("org.jeecg.modules:ems_cmms_spotcheck_content_item:edit")
+	@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
+	public Result<String> edit(@RequestBody CmmsSpotcheckContentItem cmmsSpotcheckContentItem) {
+		cmmsSpotcheckContentItemService.updateById(cmmsSpotcheckContentItem);
+		return Result.OK("编辑成功!");
+	}
+	
+	/**
+	 *   通过id删除
+	 *
+	 * @param id
+	 * @return
+	 */
+	@AutoLog(value = "点检内容-点检项-通过id删除")
+	@ApiOperation(value="点检内容-点检项-通过id删除", notes="点检内容-点检项-通过id删除")
+	//@RequiresPermissions("org.jeecg.modules:ems_cmms_spotcheck_content_item:delete")
+	@DeleteMapping(value = "/delete")
+	public Result<String> delete(@RequestParam(name="id",required=true) String id) {
+		cmmsSpotcheckContentItemService.removeById(id);
+		return Result.OK("删除成功!");
+	}
+	
+	/**
+	 *  批量删除
+	 *
+	 * @param ids
+	 * @return
+	 */
+	@AutoLog(value = "点检内容-点检项-批量删除")
+	@ApiOperation(value="点检内容-点检项-批量删除", notes="点检内容-点检项-批量删除")
+	//@RequiresPermissions("org.jeecg.modules:ems_cmms_spotcheck_content_item:deleteBatch")
+	@DeleteMapping(value = "/deleteBatch")
+	public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
+		this.cmmsSpotcheckContentItemService.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<CmmsSpotcheckContentItem> queryById(@RequestParam(name="id",required=true) String id) {
+		CmmsSpotcheckContentItem cmmsSpotcheckContentItem = cmmsSpotcheckContentItemService.getById(id);
+		if(cmmsSpotcheckContentItem==null) {
+			return Result.error("未找到对应数据");
+		}
+		return Result.OK(cmmsSpotcheckContentItem);
+	}
+
+    /**
+    * 导出excel
+    *
+    * @param request
+    * @param cmmsSpotcheckContentItem
+    */
+    //@RequiresPermissions("org.jeecg.modules:ems_cmms_spotcheck_content_item:exportXls")
+    @RequestMapping(value = "/exportXls")
+    public ModelAndView exportXls(HttpServletRequest request, CmmsSpotcheckContentItem cmmsSpotcheckContentItem) {
+        return super.exportXls(request, cmmsSpotcheckContentItem, CmmsSpotcheckContentItem.class, "点检内容-点检项");
+    }
+
+    /**
+      * 通过excel导入数据
+    *
+    * @param request
+    * @param response
+    * @return
+    */
+    //@RequiresPermissions("ems_cmms_spotcheck_content_item:importExcel")
+    @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
+    public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
+        return super.importExcel(request, response, CmmsSpotcheckContentItem.class);
+    }
+
+}

+ 66 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContentItem/entity/CmmsSpotcheckContentItem.java

@@ -0,0 +1,66 @@
+package org.jeecg.modules.cmmsSpotcheckContentItem.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: 点检内容-点检项
+ * @Author: jeecg-boot
+ * @Date:   2024-01-15
+ * @Version: V1.0
+ */
+@Data
+@TableName("ems_cmms_spotcheck_content_item")
+@Accessors(chain = true)
+@EqualsAndHashCode(callSuper = false)
+@ApiModel(value="ems_cmms_spotcheck_content_item对象", description="点检内容-点检项")
+public class CmmsSpotcheckContentItem 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)
+    @ApiModelProperty(value = "点检内容id")
+    private java.lang.String spotcheckcontid;
+	/**点检项id*/
+	@Excel(name = "点检项id", width = 15)
+    @ApiModelProperty(value = "点检项id")
+    private java.lang.String spotcheckitemid;
+	/**创建人*/
+    @ApiModelProperty(value = "创建人")
+    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.util.Date createTime;
+	/**更新人*/
+    @ApiModelProperty(value = "更新人")
+    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.util.Date updateTime;
+	/**所属部门*/
+    @ApiModelProperty(value = "所属部门")
+    private java.lang.String sysOrgCode;
+}

+ 17 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContentItem/mapper/CmmsSpotcheckContentItemMapper.java

@@ -0,0 +1,17 @@
+package org.jeecg.modules.cmmsSpotcheckContentItem.mapper;
+
+import java.util.List;
+
+import org.apache.ibatis.annotations.Param;
+import org.jeecg.modules.cmmsSpotcheckContentItem.entity.CmmsSpotcheckContentItem;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * @Description: 点检内容-点检项
+ * @Author: jeecg-boot
+ * @Date:   2024-01-15
+ * @Version: V1.0
+ */
+public interface CmmsSpotcheckContentItemMapper extends BaseMapper<CmmsSpotcheckContentItem> {
+
+}

+ 5 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContentItem/mapper/xml/CmmsSpotcheckContentItemMapper.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.cmmsSpotcheckContentItem.mapper.CmmsSpotcheckContentItemMapper">
+
+</mapper>

+ 14 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContentItem/service/ICmmsSpotcheckContentItemService.java

@@ -0,0 +1,14 @@
+package org.jeecg.modules.cmmsSpotcheckContentItem.service;
+
+import org.jeecg.modules.cmmsSpotcheckContentItem.entity.CmmsSpotcheckContentItem;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * @Description: 点检内容-点检项
+ * @Author: jeecg-boot
+ * @Date:   2024-01-15
+ * @Version: V1.0
+ */
+public interface ICmmsSpotcheckContentItemService extends IService<CmmsSpotcheckContentItem> {
+
+}

+ 19 - 0
jeecg_module_ems/src/main/java/org/jeecg/modules/cmmsSpotcheckContentItem/service/impl/CmmsSpotcheckContentItemServiceImpl.java

@@ -0,0 +1,19 @@
+package org.jeecg.modules.cmmsSpotcheckContentItem.service.impl;
+
+import org.jeecg.modules.cmmsSpotcheckContentItem.entity.CmmsSpotcheckContentItem;
+import org.jeecg.modules.cmmsSpotcheckContentItem.mapper.CmmsSpotcheckContentItemMapper;
+import org.jeecg.modules.cmmsSpotcheckContentItem.service.ICmmsSpotcheckContentItemService;
+import org.springframework.stereotype.Service;
+
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+
+/**
+ * @Description: 点检内容-点检项
+ * @Author: jeecg-boot
+ * @Date:   2024-01-15
+ * @Version: V1.0
+ */
+@Service
+public class CmmsSpotcheckContentItemServiceImpl extends ServiceImpl<CmmsSpotcheckContentItemMapper, CmmsSpotcheckContentItem> implements ICmmsSpotcheckContentItemService {
+
+}