lizhenhao 2 år sedan
förälder
incheckning
c2c6d62639

+ 5 - 0
jeeplus-module/jeeplus-test/src/main/java/com/jeeplus/test/cw/projectRecords/domain/CwProjectRecords.java

@@ -103,4 +103,9 @@ public class CwProjectRecords extends BaseEntity {
      */
     private String realHeader;
 
+    /**
+     * 报备类型
+     */
+    private String reportType;
+
 }

+ 3 - 1
jeeplus-module/jeeplus-test/src/main/java/com/jeeplus/test/cw/projectRecords/mapper/xml/CwProjectRecordsMapper.xml

@@ -40,6 +40,7 @@
         <result property="businessTypeName" column="business_type_name" jdbcType="VARCHAR"/>
         <result property="realHeader" column="real_header" jdbcType="VARCHAR"/>
         <result property="clientContactsName" column="client_contacts_name" jdbcType="VARCHAR"/>
+        <result property="reportType" column="report_type" jdbcType="VARCHAR"/>
         <collection property="cwProjectClientInfoDTOList" ofType="com.jeeplus.test.cw.workClientInfo.service.dto.CwWorkClientBaseDTO" column="id" select="getProjectClient"></collection>
         <collection property="workAttachmentDtoList" ofType="com.jeeplus.test.workContract.service.dto.WorkAttachmentDto" column="id" select="getFileList"></collection>
     </resultMap>
@@ -80,7 +81,8 @@
         a.contract_id,
         a.business_type,
         a.risk_level,
-        a.real_header
+        a.real_header,
+        a.report_type
     </sql>
     <sql id="File_Column_List">
         wa.id,

+ 5 - 0
jeeplus-module/jeeplus-test/src/main/java/com/jeeplus/test/cw/projectRecords/service/dto/CwProjectRecordsDTO.java

@@ -198,4 +198,9 @@ public class CwProjectRecordsDTO extends BaseDTO {
      * 合同委托人
      */
     private String clientContactsName;
+
+    /**
+     * 报备类型
+     */
+    private String reportType;
 }