Browse Source

内部报验核心检验指标

wangming 11 months ago
parent
commit
85879116ed

+ 16 - 0
business-common/src/main/java/com/rongwei/bscommon/sys/dao/ZhcxInsideInspectionCoreIndicatorsDao.java

@@ -0,0 +1,16 @@
+package com.rongwei.bscommon.sys.dao;
+
+import com.rongwei.bsentity.domain.ZhcxInsideInspectionCoreIndicatorsDo;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * <p>
+ * 内部报验-报验管理-核心检验指标 Mapper 接口
+ * </p>
+ *
+ * @author wm
+ * @since 2024-08-15
+ */
+public interface ZhcxInsideInspectionCoreIndicatorsDao extends BaseMapper<ZhcxInsideInspectionCoreIndicatorsDo> {
+
+}

+ 16 - 0
business-common/src/main/java/com/rongwei/bscommon/sys/service/ZhcxInsideInspectionCoreIndicatorsService.java

@@ -0,0 +1,16 @@
+package com.rongwei.bscommon.sys.service;
+
+import com.rongwei.bsentity.domain.ZhcxInsideInspectionCoreIndicatorsDo;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * <p>
+ * 内部报验-报验管理-核心检验指标 服务类
+ * </p>
+ *
+ * @author wm
+ * @since 2024-08-15
+ */
+public interface ZhcxInsideInspectionCoreIndicatorsService extends IService<ZhcxInsideInspectionCoreIndicatorsDo> {
+
+}

+ 20 - 0
business-common/src/main/java/com/rongwei/bscommon/sys/service/impl/ZhcxInsideInspectionCoreIndicatorsServiceImpl.java

@@ -0,0 +1,20 @@
+package com.rongwei.bscommon.sys.service.impl;
+
+import com.rongwei.bsentity.domain.ZhcxInsideInspectionCoreIndicatorsDo;
+import com.rongwei.bscommon.sys.dao.ZhcxInsideInspectionCoreIndicatorsDao;
+import com.rongwei.bscommon.sys.service.ZhcxInsideInspectionCoreIndicatorsService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ * <p>
+ * 内部报验-报验管理-核心检验指标 服务实现类
+ * </p>
+ *
+ * @author wm
+ * @since 2024-08-15
+ */
+@Service
+public class ZhcxInsideInspectionCoreIndicatorsServiceImpl extends ServiceImpl<ZhcxInsideInspectionCoreIndicatorsDao, ZhcxInsideInspectionCoreIndicatorsDo> implements ZhcxInsideInspectionCoreIndicatorsService {
+
+}

+ 129 - 0
business-entity/src/main/java/com/rongwei/bsentity/domain/ZhcxInsideInspectionCoreIndicatorsDo.java

@@ -0,0 +1,129 @@
+package com.rongwei.bsentity.domain;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.rongwei.rwcommon.base.BaseDo;
+import java.util.Date;
+import com.baomidou.mybatisplus.annotation.TableField;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+
+/**
+ * <p>
+ * 内部报验-报验管理-核心检验指标
+ * </p>
+ *
+ * @author wm
+ * @since 2024-08-15
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@Accessors(chain = true)
+@TableName("ZHCX_INSIDE_INSPECTION_CORE_INDICATORS")
+public class ZhcxInsideInspectionCoreIndicatorsDo extends BaseDo {
+
+    private static final long serialVersionUID=1L;
+
+    /**
+     * 主键
+     */
+    @TableField("ID")
+    private String id;
+    /**
+     * 租户ID
+     */
+    @TableField("TENANTID")
+    private String tenantid;
+    /**
+     * 扩展预留
+     */
+    @TableField("ROPTION")
+    private String roption;
+    /**
+     * 内部报验单id
+     */
+    @TableField("INSIDEID")
+    private String insideid;
+    /**
+     * 核心检验指标id
+     */
+    @TableField("COREID")
+    private String coreid;
+    /**
+     * 核心检验指标编码
+     */
+    @TableField("CORECODE")
+    private String corecode;
+    /**
+     * 核心检验指标名称
+     */
+    @TableField("CORENAME")
+    private String corename;
+    /**
+     * 检查项id
+     */
+    @TableField("COREITEMID")
+    private String coreitemid;
+    /**
+     * 检查项
+     */
+    @TableField("INSPECTON_ITEMS")
+    private String inspectonItems;
+    /**
+     * 接收条件
+     */
+    @TableField("RECEIVING_CONDITIONS")
+    private String receivingConditions;
+    /**
+     * 依据标准
+     */
+    @TableField("ACCORDING_TO_STANDARDS")
+    private String accordingToStandards;
+    /**
+     * 自检员实测记录
+     */
+    @TableField("SELFACTUALRECORD")
+    private String selfactualrecord;
+    /**
+     * 自检员结果判定
+     */
+    @TableField("SELFRESULT")
+    private String selfresult;
+    /**
+     * 自检员附件
+     */
+    @TableField("SELFFILES")
+    private String selffiles;
+    /**
+     * 自检员备注
+     */
+    @TableField("SELFREMARK")
+    private String selfremark;
+    /**
+     * 检验员实测记录
+     */
+    @TableField("CHECKACTUALRECORD")
+    private String checkactualrecord;
+    /**
+     * 检验员结果判定
+     */
+    @TableField("CHECKRESULT")
+    private String checkresult;
+    /**
+     * 检验员附件
+     */
+    @TableField("CHECKFILES")
+    private String checkfiles;
+    /**
+     * 检验员备注
+     */
+    @TableField("CHECKREMARK")
+    private String checkremark;
+    /**
+     * 排序
+     */
+    @TableField("SORT")
+    private Integer sort;
+
+
+}