dev-deployment
luotaiqian 2026-06-30 18:19:32 +08:00
parent e01ba60272
commit f0a9ce54b2
8 changed files with 21 additions and 1 deletions

View File

@ -16,6 +16,9 @@ public class QualFilingMaterialCO {
/** filingId */
private Long filingId;
/** materialType */
private String materialType;
/** materialContent */
private String materialContent;

View File

@ -10,6 +10,9 @@ import lombok.Data;
@Data
public class QualFilingMaterialAddCmd {
/** materialType */
private String materialType;
/** materialContent */
private String materialContent;

View File

@ -13,6 +13,9 @@ public class QualFilingMaterialModifyCmd {
/** 主键ID必填 */
private Long id;
/** materialType */
private String materialType;
/** materialContent */
private String materialContent;

View File

@ -15,6 +15,9 @@ public class QualFilingMaterialPageQuery extends BasePageQuery {
/** 备案ID */
private Long filingId;
/** 材料类型 */
private String materialType;
/** 材料内容 */
private String materialContent;
}

View File

@ -16,6 +16,9 @@ public class QualFilingMaterialEntity {
/** 备案申请ID */
private Long filingId;
/** 材料类型 */
private String materialType;
/** 材料内容 */
private String materialContent;

View File

@ -22,6 +22,9 @@ public class QualFilingMaterialQuery {
/** 备案ID */
private Long filingId;
/** 材料类型 */
private String materialType;
/** 材料内容 */
private String materialContent;
}

View File

@ -16,6 +16,7 @@ public class QualFilingMaterialDO {
private Long id;
private Long filingId;
private String materialType;
private String materialContent;
private String materialFormat;
private Integer sortOrder;

View File

@ -6,6 +6,7 @@
<resultMap id="BaseResultMap" type="org.qinan.safetyeval.infrastructure.dataobject.QualFilingMaterialDO">
<id column="id" property="id"/>
<result column="filing_id" property="filingId"/>
<result column="material_type" property="materialType"/>
<result column="material_content" property="materialContent"/>
<result column="material_format" property="materialFormat"/>
<result column="sort_order" property="sortOrder"/>
@ -31,7 +32,7 @@
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
`id`, `filing_id`, `material_content`, `material_format`, `sort_order`, `required_flag`, `upload_status_code`, `upload_status_name`, `attachment_desc`, `attachment_url`, `material_remark`, `delete_enum`, `remarks`, `create_name`, `update_name`, `tenant_id`, `org_id`, `version`, `create_time`, `update_time`, `create_id`, `update_id`, `env`
`id`, `filing_id`, `material_type`, `material_content`, `material_format`, `sort_order`, `required_flag`, `upload_status_code`, `upload_status_name`, `attachment_desc`, `attachment_url`, `material_remark`, `delete_enum`, `remarks`, `create_name`, `update_name`, `tenant_id`, `org_id`, `version`, `create_time`, `update_time`, `create_id`, `update_id`, `env`
</sql>
</mapper>