Browse Source

feature 删除代码提交

xiahan 2 months ago
parent
commit
fdcfd8c94b

+ 0 - 174
js-security/src/main/java/generator/domain/AspHazardProperty.java

@@ -1,174 +0,0 @@
-package generator.domain;
-
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableField;
-import com.baomidou.mybatisplus.annotation.TableId;
-import com.baomidou.mybatisplus.annotation.TableName;
-import com.rongwei.rwcommon.base.BaseDo;
-import java.io.Serializable;
-import java.util.Date;
-import lombok.Data;
-
-/**
- * 危害特性应知卡
- * @TableName asp_hazard_property
- */
-@TableName(value ="asp_hazard_property")
-@Data
-public class AspHazardProperty extends BaseDo implements Serializable {
-    /**
-     * 主键
-     */
-    @TableId
-    private String id;
-
-    /**
-     * 
-     */
-    private String tenantid;
-
-    /**
-     * 扩展json格式配置
-     */
-    private String roption;
-
-    /**
-     * 岗位名称
-     */
-    private String postname;
-
-    /**
-     * 主要危险有害因素
-     */
-    private String riskfactors;
-
-    /**
-     * 易导致事故风险
-     */
-    private String accidentrisk;
-
-    /**
-     * 风险等级
-     */
-    private String risklevel;
-
-    /**
-     * 风险管控措施
-     */
-    private String controlmeasures;
-
-    /**
-     * 应急处置对策
-     */
-    private String countermeasures;
-
-    /**
-     * 安全警示标示
-     */
-    private String safetywarningsigns;
-
-    /**
-     * 附件
-     */
-    private String annex;
-
-    /**
-     * 企业编码
-     */
-    private Integer enterprisecode;
-
-    /**
-     * 上次同步时间
-     */
-    private Date synctime;
-
-    @TableField(exist = false)
-    private static final long serialVersionUID = 1L;
-
-    @Override
-    public boolean equals(Object that) {
-        if (this == that) {
-            return true;
-        }
-        if (that == null) {
-            return false;
-        }
-        if (getClass() != that.getClass()) {
-            return false;
-        }
-        AspHazardProperty other = (AspHazardProperty) that;
-        return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
-            && (this.getTenantid() == null ? other.getTenantid() == null : this.getTenantid().equals(other.getTenantid()))
-            && (this.getRoption() == null ? other.getRoption() == null : this.getRoption().equals(other.getRoption()))
-            && (this.getDeleted() == null ? other.getDeleted() == null : this.getDeleted().equals(other.getDeleted()))
-            && (this.getRemark() == null ? other.getRemark() == null : this.getRemark().equals(other.getRemark()))
-            && (this.getCreatedate() == null ? other.getCreatedate() == null : this.getCreatedate().equals(other.getCreatedate()))
-            && (this.getCreateuserid() == null ? other.getCreateuserid() == null : this.getCreateuserid().equals(other.getCreateuserid()))
-            && (this.getModifydate() == null ? other.getModifydate() == null : this.getModifydate().equals(other.getModifydate()))
-            && (this.getModifyuserid() == null ? other.getModifyuserid() == null : this.getModifyuserid().equals(other.getModifyuserid()))
-            && (this.getCreateusername() == null ? other.getCreateusername() == null : this.getCreateusername().equals(other.getCreateusername()))
-            && (this.getModifyusername() == null ? other.getModifyusername() == null : this.getModifyusername().equals(other.getModifyusername()))
-            && (this.getPostname() == null ? other.getPostname() == null : this.getPostname().equals(other.getPostname()))
-            && (this.getRiskfactors() == null ? other.getRiskfactors() == null : this.getRiskfactors().equals(other.getRiskfactors()))
-            && (this.getAccidentrisk() == null ? other.getAccidentrisk() == null : this.getAccidentrisk().equals(other.getAccidentrisk()))
-            && (this.getRisklevel() == null ? other.getRisklevel() == null : this.getRisklevel().equals(other.getRisklevel()))
-            && (this.getControlmeasures() == null ? other.getControlmeasures() == null : this.getControlmeasures().equals(other.getControlmeasures()))
-            && (this.getCountermeasures() == null ? other.getCountermeasures() == null : this.getCountermeasures().equals(other.getCountermeasures()))
-            && (this.getSafetywarningsigns() == null ? other.getSafetywarningsigns() == null : this.getSafetywarningsigns().equals(other.getSafetywarningsigns()))
-            && (this.getAnnex() == null ? other.getAnnex() == null : this.getAnnex().equals(other.getAnnex()))
-            && (this.getEnterprisecode() == null ? other.getEnterprisecode() == null : this.getEnterprisecode().equals(other.getEnterprisecode()))
-            && (this.getSynctime() == null ? other.getSynctime() == null : this.getSynctime().equals(other.getSynctime()));
-    }
-
-    @Override
-    public int hashCode() {
-        final int prime = 31;
-        int result = 1;
-        result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
-        result = prime * result + ((getTenantid() == null) ? 0 : getTenantid().hashCode());
-        result = prime * result + ((getRoption() == null) ? 0 : getRoption().hashCode());
-        result = prime * result + ((getDeleted() == null) ? 0 : getDeleted().hashCode());
-        result = prime * result + ((getRemark() == null) ? 0 : getRemark().hashCode());
-        result = prime * result + ((getCreatedate() == null) ? 0 : getCreatedate().hashCode());
-        result = prime * result + ((getCreateuserid() == null) ? 0 : getCreateuserid().hashCode());
-        result = prime * result + ((getModifydate() == null) ? 0 : getModifydate().hashCode());
-        result = prime * result + ((getModifyuserid() == null) ? 0 : getModifyuserid().hashCode());
-        result = prime * result + ((getCreateusername() == null) ? 0 : getCreateusername().hashCode());
-        result = prime * result + ((getModifyusername() == null) ? 0 : getModifyusername().hashCode());
-        result = prime * result + ((getPostname() == null) ? 0 : getPostname().hashCode());
-        result = prime * result + ((getRiskfactors() == null) ? 0 : getRiskfactors().hashCode());
-        result = prime * result + ((getAccidentrisk() == null) ? 0 : getAccidentrisk().hashCode());
-        result = prime * result + ((getRisklevel() == null) ? 0 : getRisklevel().hashCode());
-        result = prime * result + ((getControlmeasures() == null) ? 0 : getControlmeasures().hashCode());
-        result = prime * result + ((getCountermeasures() == null) ? 0 : getCountermeasures().hashCode());
-        result = prime * result + ((getSafetywarningsigns() == null) ? 0 : getSafetywarningsigns().hashCode());
-        result = prime * result + ((getAnnex() == null) ? 0 : getAnnex().hashCode());
-        result = prime * result + ((getEnterprisecode() == null) ? 0 : getEnterprisecode().hashCode());
-        result = prime * result + ((getSynctime() == null) ? 0 : getSynctime().hashCode());
-        return result;
-    }
-
-    @Override
-    public String toString() {
-        StringBuilder sb = new StringBuilder();
-        sb.append(getClass().getSimpleName());
-        sb.append(" [");
-        sb.append("Hash = ").append(hashCode());
-        sb.append(", id=").append(id);
-        sb.append(", tenantid=").append(tenantid);
-        sb.append(", roption=").append(roption);
-        sb.append(", postname=").append(postname);
-        sb.append(", riskfactors=").append(riskfactors);
-        sb.append(", accidentrisk=").append(accidentrisk);
-        sb.append(", risklevel=").append(risklevel);
-        sb.append(", controlmeasures=").append(controlmeasures);
-        sb.append(", countermeasures=").append(countermeasures);
-        sb.append(", safetywarningsigns=").append(safetywarningsigns);
-        sb.append(", annex=").append(annex);
-        sb.append(", enterprisecode=").append(enterprisecode);
-        sb.append(", synctime=").append(synctime);
-        sb.append(", serialVersionUID=").append(serialVersionUID);
-        sb.append("]");
-        return sb.toString();
-    }
-}

+ 0 - 174
js-security/src/main/java/generator/domain/AspSafetyProductionResponsibilityDo.java

@@ -1,174 +0,0 @@
-package generator.domain;
-
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableField;
-import com.baomidou.mybatisplus.annotation.TableId;
-import com.baomidou.mybatisplus.annotation.TableName;
-import com.rongwei.rwcommon.base.BaseDo;
-import java.io.Serializable;
-import java.util.Date;
-import lombok.Data;
-
-/**
- * 安全生产责任承诺卡
- * @TableName asp_safety_production_responsibility
- */
-@TableName(value ="asp_safety_production_responsibility")
-@Data
-public class AspSafetyProductionResponsibilityDo extends BaseDo implements Serializable {
-    /**
-     * 主键
-     */
-    @TableId
-    private String id;
-
-    /**
-     * 
-     */
-    private String tenantid;
-
-    /**
-     * 扩展json格式配置
-     */
-    private String roption;
-
-    /**
-     * 承诺人
-     */
-    private String promisee;
-
-    /**
-     * 承诺人ID
-     */
-    private String promiseeid;
-
-    /**
-     * 主管领导
-     */
-    private String leader;
-
-    /**
-     * 主管领导ID
-     */
-    private String leaderid;
-
-    /**
-     * 岗位名称
-     */
-    private String postname;
-
-    /**
-     * 承诺事项
-     */
-    private String commitmentmatters;
-
-    /**
-     * 承诺日期
-     */
-    private Date promisedate;
-
-    /**
-     * 附件
-     */
-    private String annex;
-
-    /**
-     * 企业编码
-     */
-    private Integer enterprisecode;
-
-    /**
-     * 上次同步时间
-     */
-    private Date synctime;
-
-    @TableField(exist = false)
-    private static final long serialVersionUID = 1L;
-
-    @Override
-    public boolean equals(Object that) {
-        if (this == that) {
-            return true;
-        }
-        if (that == null) {
-            return false;
-        }
-        if (getClass() != that.getClass()) {
-            return false;
-        }
-        AspSafetyProductionResponsibilityDo other = (AspSafetyProductionResponsibilityDo) that;
-        return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
-            && (this.getTenantid() == null ? other.getTenantid() == null : this.getTenantid().equals(other.getTenantid()))
-            && (this.getRoption() == null ? other.getRoption() == null : this.getRoption().equals(other.getRoption()))
-            && (this.getDeleted() == null ? other.getDeleted() == null : this.getDeleted().equals(other.getDeleted()))
-            && (this.getRemark() == null ? other.getRemark() == null : this.getRemark().equals(other.getRemark()))
-            && (this.getCreatedate() == null ? other.getCreatedate() == null : this.getCreatedate().equals(other.getCreatedate()))
-            && (this.getCreateuserid() == null ? other.getCreateuserid() == null : this.getCreateuserid().equals(other.getCreateuserid()))
-            && (this.getModifydate() == null ? other.getModifydate() == null : this.getModifydate().equals(other.getModifydate()))
-            && (this.getModifyuserid() == null ? other.getModifyuserid() == null : this.getModifyuserid().equals(other.getModifyuserid()))
-            && (this.getCreateusername() == null ? other.getCreateusername() == null : this.getCreateusername().equals(other.getCreateusername()))
-            && (this.getModifyusername() == null ? other.getModifyusername() == null : this.getModifyusername().equals(other.getModifyusername()))
-            && (this.getPromisee() == null ? other.getPromisee() == null : this.getPromisee().equals(other.getPromisee()))
-            && (this.getPromiseeid() == null ? other.getPromiseeid() == null : this.getPromiseeid().equals(other.getPromiseeid()))
-            && (this.getLeader() == null ? other.getLeader() == null : this.getLeader().equals(other.getLeader()))
-            && (this.getLeaderid() == null ? other.getLeaderid() == null : this.getLeaderid().equals(other.getLeaderid()))
-            && (this.getPostname() == null ? other.getPostname() == null : this.getPostname().equals(other.getPostname()))
-            && (this.getCommitmentmatters() == null ? other.getCommitmentmatters() == null : this.getCommitmentmatters().equals(other.getCommitmentmatters()))
-            && (this.getPromisedate() == null ? other.getPromisedate() == null : this.getPromisedate().equals(other.getPromisedate()))
-            && (this.getAnnex() == null ? other.getAnnex() == null : this.getAnnex().equals(other.getAnnex()))
-            && (this.getEnterprisecode() == null ? other.getEnterprisecode() == null : this.getEnterprisecode().equals(other.getEnterprisecode()))
-            && (this.getSynctime() == null ? other.getSynctime() == null : this.getSynctime().equals(other.getSynctime()));
-    }
-
-    @Override
-    public int hashCode() {
-        final int prime = 31;
-        int result = 1;
-        result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
-        result = prime * result + ((getTenantid() == null) ? 0 : getTenantid().hashCode());
-        result = prime * result + ((getRoption() == null) ? 0 : getRoption().hashCode());
-        result = prime * result + ((getDeleted() == null) ? 0 : getDeleted().hashCode());
-        result = prime * result + ((getRemark() == null) ? 0 : getRemark().hashCode());
-        result = prime * result + ((getCreatedate() == null) ? 0 : getCreatedate().hashCode());
-        result = prime * result + ((getCreateuserid() == null) ? 0 : getCreateuserid().hashCode());
-        result = prime * result + ((getModifydate() == null) ? 0 : getModifydate().hashCode());
-        result = prime * result + ((getModifyuserid() == null) ? 0 : getModifyuserid().hashCode());
-        result = prime * result + ((getCreateusername() == null) ? 0 : getCreateusername().hashCode());
-        result = prime * result + ((getModifyusername() == null) ? 0 : getModifyusername().hashCode());
-        result = prime * result + ((getPromisee() == null) ? 0 : getPromisee().hashCode());
-        result = prime * result + ((getPromiseeid() == null) ? 0 : getPromiseeid().hashCode());
-        result = prime * result + ((getLeader() == null) ? 0 : getLeader().hashCode());
-        result = prime * result + ((getLeaderid() == null) ? 0 : getLeaderid().hashCode());
-        result = prime * result + ((getPostname() == null) ? 0 : getPostname().hashCode());
-        result = prime * result + ((getCommitmentmatters() == null) ? 0 : getCommitmentmatters().hashCode());
-        result = prime * result + ((getPromisedate() == null) ? 0 : getPromisedate().hashCode());
-        result = prime * result + ((getAnnex() == null) ? 0 : getAnnex().hashCode());
-        result = prime * result + ((getEnterprisecode() == null) ? 0 : getEnterprisecode().hashCode());
-        result = prime * result + ((getSynctime() == null) ? 0 : getSynctime().hashCode());
-        return result;
-    }
-
-    @Override
-    public String toString() {
-        StringBuilder sb = new StringBuilder();
-        sb.append(getClass().getSimpleName());
-        sb.append(" [");
-        sb.append("Hash = ").append(hashCode());
-        sb.append(", id=").append(id);
-        sb.append(", tenantid=").append(tenantid);
-        sb.append(", roption=").append(roption);
-        sb.append(", promisee=").append(promisee);
-        sb.append(", promiseeid=").append(promiseeid);
-        sb.append(", leader=").append(leader);
-        sb.append(", leaderid=").append(leaderid);
-        sb.append(", postname=").append(postname);
-        sb.append(", commitmentmatters=").append(commitmentmatters);
-        sb.append(", promisedate=").append(promisedate);
-        sb.append(", annex=").append(annex);
-        sb.append(", enterprisecode=").append(enterprisecode);
-        sb.append(", synctime=").append(synctime);
-        sb.append(", serialVersionUID=").append(serialVersionUID);
-        sb.append("]");
-        return sb.toString();
-    }
-}

+ 0 - 18
js-security/src/main/java/generator/mapper/AspHazardPropertyMapper.java

@@ -1,18 +0,0 @@
-package generator.mapper;
-
-import generator.domain.AspHazardProperty;
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-
-/**
-* @author Admin
-* @description 针对表【asp_hazard_property(危害特性应知卡)】的数据库操作Mapper
-* @createDate 2025-05-26 09:36:38
-* @Entity generator.domain.AspHazardProperty
-*/
-public interface AspHazardPropertyMapper extends BaseMapper<AspHazardProperty> {
-
-}
-
-
-
-

+ 0 - 18
js-security/src/main/java/generator/mapper/AspSafetyProductionResponsibilityDoMapper.java

@@ -1,18 +0,0 @@
-package generator.mapper;
-
-import generator.domain.AspSafetyProductionResponsibilityDo;
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-
-/**
-* @author Admin
-* @description 针对表【asp_safety_production_responsibility(安全生产责任承诺卡)】的数据库操作Mapper
-* @createDate 2025-05-23 15:07:08
-* @Entity generator.domain.AspSafetyProductionResponsibilityDo
-*/
-public interface AspSafetyProductionResponsibilityDoMapper extends BaseMapper<AspSafetyProductionResponsibilityDo> {
-
-}
-
-
-
-

+ 0 - 13
js-security/src/main/java/generator/service/AspHazardPropertyService.java

@@ -1,13 +0,0 @@
-package generator.service;
-
-import generator.domain.AspHazardProperty;
-import com.baomidou.mybatisplus.extension.service.IService;
-
-/**
-* @author Admin
-* @description 针对表【asp_hazard_property(危害特性应知卡)】的数据库操作Service
-* @createDate 2025-05-26 09:36:38
-*/
-public interface AspHazardPropertyService extends IService<AspHazardProperty> {
-
-}

+ 0 - 13
js-security/src/main/java/generator/service/AspSafetyProductionResponsibilityDoService.java

@@ -1,13 +0,0 @@
-package generator.service;
-
-import generator.domain.AspSafetyProductionResponsibilityDo;
-import com.baomidou.mybatisplus.extension.service.IService;
-
-/**
-* @author Admin
-* @description 针对表【asp_safety_production_responsibility(安全生产责任承诺卡)】的数据库操作Service
-* @createDate 2025-05-23 15:07:08
-*/
-public interface AspSafetyProductionResponsibilityDoService extends IService<AspSafetyProductionResponsibilityDo> {
-
-}

+ 0 - 22
js-security/src/main/java/generator/service/impl/AspHazardPropertyServiceImpl.java

@@ -1,22 +0,0 @@
-package generator.service.impl;
-
-import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
-import generator.domain.AspHazardProperty;
-import generator.service.AspHazardPropertyService;
-import generator.mapper.AspHazardPropertyMapper;
-import org.springframework.stereotype.Service;
-
-/**
-* @author Admin
-* @description 针对表【asp_hazard_property(危害特性应知卡)】的数据库操作Service实现
-* @createDate 2025-05-26 09:36:38
-*/
-@Service
-public class AspHazardPropertyServiceImpl extends ServiceImpl<AspHazardPropertyMapper, AspHazardProperty>
-    implements AspHazardPropertyService{
-
-}
-
-
-
-

+ 0 - 22
js-security/src/main/java/generator/service/impl/AspSafetyProductionResponsibilityDoServiceImpl.java

@@ -1,22 +0,0 @@
-package generator.service.impl;
-
-import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
-import generator.domain.AspSafetyProductionResponsibilityDo;
-import generator.service.AspSafetyProductionResponsibilityDoService;
-import generator.mapper.AspSafetyProductionResponsibilityDoMapper;
-import org.springframework.stereotype.Service;
-
-/**
-* @author Admin
-* @description 针对表【asp_safety_production_responsibility(安全生产责任承诺卡)】的数据库操作Service实现
-* @createDate 2025-05-23 15:07:08
-*/
-@Service
-public class AspSafetyProductionResponsibilityDoServiceImpl extends ServiceImpl<AspSafetyProductionResponsibilityDoMapper, AspSafetyProductionResponsibilityDo>
-    implements AspSafetyProductionResponsibilityDoService{
-
-}
-
-
-
-

+ 0 - 40
js-security/src/main/resources/mapper/AspHazardPropertyMapper.xml

@@ -1,40 +0,0 @@
-<?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="generator.mapper.AspHazardPropertyMapper">
-
-    <resultMap id="BaseResultMap" type="generator.domain.AspHazardProperty">
-            <id property="id" column="ID" jdbcType="VARCHAR"/>
-            <result property="tenantid" column="TENANTID" jdbcType="VARCHAR"/>
-            <result property="roption" column="ROPTION" jdbcType="VARCHAR"/>
-            <result property="deleted" column="DELETED" jdbcType="CHAR"/>
-            <result property="remark" column="REMARK" jdbcType="VARCHAR"/>
-            <result property="createdate" column="CREATEDATE" jdbcType="TIMESTAMP"/>
-            <result property="createuserid" column="CREATEUSERID" jdbcType="VARCHAR"/>
-            <result property="modifydate" column="MODIFYDATE" jdbcType="TIMESTAMP"/>
-            <result property="modifyuserid" column="MODIFYUSERID" jdbcType="VARCHAR"/>
-            <result property="createusername" column="CREATEUSERNAME" jdbcType="VARCHAR"/>
-            <result property="modifyusername" column="MODIFYUSERNAME" jdbcType="VARCHAR"/>
-            <result property="postname" column="POSTNAME" jdbcType="VARCHAR"/>
-            <result property="riskfactors" column="RISKFACTORS" jdbcType="VARCHAR"/>
-            <result property="accidentrisk" column="ACCIDENTRISK" jdbcType="VARCHAR"/>
-            <result property="risklevel" column="RISKLEVEL" jdbcType="VARCHAR"/>
-            <result property="controlmeasures" column="CONTROLMEASURES" jdbcType="VARCHAR"/>
-            <result property="countermeasures" column="COUNTERMEASURES" jdbcType="VARCHAR"/>
-            <result property="safetywarningsigns" column="SAFETYWARNINGSIGNS" jdbcType="VARCHAR"/>
-            <result property="annex" column="ANNEX" jdbcType="VARCHAR"/>
-            <result property="enterprisecode" column="ENTERPRISECODE" jdbcType="INTEGER"/>
-            <result property="synctime" column="SYNCTIME" jdbcType="TIMESTAMP"/>
-    </resultMap>
-
-    <sql id="Base_Column_List">
-        ID,TENANTID,ROPTION,
-        DELETED,REMARK,CREATEDATE,
-        CREATEUSERID,MODIFYDATE,MODIFYUSERID,
-        CREATEUSERNAME,MODIFYUSERNAME,POSTNAME,
-        RISKFACTORS,ACCIDENTRISK,RISKLEVEL,
-        CONTROLMEASURES,COUNTERMEASURES,SAFETYWARNINGSIGNS,
-        ANNEX,ENTERPRISECODE,SYNCTIME
-    </sql>
-</mapper>

+ 0 - 40
js-security/src/main/resources/mapper/AspSafetyProductionResponsibilityDoMapper.xml

@@ -1,40 +0,0 @@
-<?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="generator.mapper.AspSafetyProductionResponsibilityDoMapper">
-
-    <resultMap id="BaseResultMap" type="generator.domain.AspSafetyProductionResponsibilityDo">
-            <id property="id" column="ID" jdbcType="VARCHAR"/>
-            <result property="tenantid" column="TENANTID" jdbcType="VARCHAR"/>
-            <result property="roption" column="ROPTION" jdbcType="VARCHAR"/>
-            <result property="deleted" column="DELETED" jdbcType="CHAR"/>
-            <result property="remark" column="REMARK" jdbcType="VARCHAR"/>
-            <result property="createdate" column="CREATEDATE" jdbcType="TIMESTAMP"/>
-            <result property="createuserid" column="CREATEUSERID" jdbcType="VARCHAR"/>
-            <result property="modifydate" column="MODIFYDATE" jdbcType="TIMESTAMP"/>
-            <result property="modifyuserid" column="MODIFYUSERID" jdbcType="VARCHAR"/>
-            <result property="createusername" column="CREATEUSERNAME" jdbcType="VARCHAR"/>
-            <result property="modifyusername" column="MODIFYUSERNAME" jdbcType="VARCHAR"/>
-            <result property="promisee" column="PROMISEE" jdbcType="VARCHAR"/>
-            <result property="promiseeid" column="PROMISEEID" jdbcType="VARCHAR"/>
-            <result property="leader" column="LEADER" jdbcType="VARCHAR"/>
-            <result property="leaderid" column="LEADERID" jdbcType="VARCHAR"/>
-            <result property="postname" column="POSTNAME" jdbcType="VARCHAR"/>
-            <result property="commitmentmatters" column="COMMITMENTMATTERS" jdbcType="VARCHAR"/>
-            <result property="promisedate" column="PROMISEDATE" jdbcType="DATE"/>
-            <result property="annex" column="ANNEX" jdbcType="VARCHAR"/>
-            <result property="enterprisecode" column="ENTERPRISECODE" jdbcType="INTEGER"/>
-            <result property="synctime" column="SYNCTIME" jdbcType="TIMESTAMP"/>
-    </resultMap>
-
-    <sql id="Base_Column_List">
-        ID,TENANTID,ROPTION,
-        DELETED,REMARK,CREATEDATE,
-        CREATEUSERID,MODIFYDATE,MODIFYUSERID,
-        CREATEUSERNAME,MODIFYUSERNAME,PROMISEE,
-        PROMISEEID,LEADER,LEADERID,
-        POSTNAME,COMMITMENTMATTERS,PROMISEDATE,
-        ANNEX,ENTERPRISECODE,SYNCTIME
-    </sql>
-</mapper>