enum
parent
e01ba60272
commit
f0a9ce54b2
|
|
@ -16,6 +16,9 @@ public class QualFilingMaterialCO {
|
||||||
/** filingId */
|
/** filingId */
|
||||||
private Long filingId;
|
private Long filingId;
|
||||||
|
|
||||||
|
/** materialType */
|
||||||
|
private String materialType;
|
||||||
|
|
||||||
/** materialContent */
|
/** materialContent */
|
||||||
private String materialContent;
|
private String materialContent;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,9 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class QualFilingMaterialAddCmd {
|
public class QualFilingMaterialAddCmd {
|
||||||
|
|
||||||
|
/** materialType */
|
||||||
|
private String materialType;
|
||||||
|
|
||||||
/** materialContent */
|
/** materialContent */
|
||||||
private String materialContent;
|
private String materialContent;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,9 @@ public class QualFilingMaterialModifyCmd {
|
||||||
/** 主键ID(必填) */
|
/** 主键ID(必填) */
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
|
/** materialType */
|
||||||
|
private String materialType;
|
||||||
|
|
||||||
/** materialContent */
|
/** materialContent */
|
||||||
private String materialContent;
|
private String materialContent;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,9 @@ public class QualFilingMaterialPageQuery extends BasePageQuery {
|
||||||
/** 备案ID */
|
/** 备案ID */
|
||||||
private Long filingId;
|
private Long filingId;
|
||||||
|
|
||||||
|
/** 材料类型 */
|
||||||
|
private String materialType;
|
||||||
|
|
||||||
/** 材料内容 */
|
/** 材料内容 */
|
||||||
private String materialContent;
|
private String materialContent;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,9 @@ public class QualFilingMaterialEntity {
|
||||||
/** 备案申请ID */
|
/** 备案申请ID */
|
||||||
private Long filingId;
|
private Long filingId;
|
||||||
|
|
||||||
|
/** 材料类型 */
|
||||||
|
private String materialType;
|
||||||
|
|
||||||
/** 材料内容 */
|
/** 材料内容 */
|
||||||
private String materialContent;
|
private String materialContent;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,9 @@ public class QualFilingMaterialQuery {
|
||||||
/** 备案ID */
|
/** 备案ID */
|
||||||
private Long filingId;
|
private Long filingId;
|
||||||
|
|
||||||
|
/** 材料类型 */
|
||||||
|
private String materialType;
|
||||||
|
|
||||||
/** 材料内容 */
|
/** 材料内容 */
|
||||||
private String materialContent;
|
private String materialContent;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ public class QualFilingMaterialDO {
|
||||||
|
|
||||||
private Long id;
|
private Long id;
|
||||||
private Long filingId;
|
private Long filingId;
|
||||||
|
private String materialType;
|
||||||
private String materialContent;
|
private String materialContent;
|
||||||
private String materialFormat;
|
private String materialFormat;
|
||||||
private Integer sortOrder;
|
private Integer sortOrder;
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
<resultMap id="BaseResultMap" type="org.qinan.safetyeval.infrastructure.dataobject.QualFilingMaterialDO">
|
<resultMap id="BaseResultMap" type="org.qinan.safetyeval.infrastructure.dataobject.QualFilingMaterialDO">
|
||||||
<id column="id" property="id"/>
|
<id column="id" property="id"/>
|
||||||
<result column="filing_id" property="filingId"/>
|
<result column="filing_id" property="filingId"/>
|
||||||
|
<result column="material_type" property="materialType"/>
|
||||||
<result column="material_content" property="materialContent"/>
|
<result column="material_content" property="materialContent"/>
|
||||||
<result column="material_format" property="materialFormat"/>
|
<result column="material_format" property="materialFormat"/>
|
||||||
<result column="sort_order" property="sortOrder"/>
|
<result column="sort_order" property="sortOrder"/>
|
||||||
|
|
@ -31,7 +32,7 @@
|
||||||
|
|
||||||
<!-- 通用查询结果列 -->
|
<!-- 通用查询结果列 -->
|
||||||
<sql id="Base_Column_List">
|
<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>
|
</sql>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue