2026-07-02 10:07:18 +08:00
|
|
|
<?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="org.qinan.safetyeval.infrastructure.persistence.mapper.QualFilingMaterialChangeMapper">
|
|
|
|
|
|
|
|
|
|
<resultMap type="org.qinan.safetyeval.infrastructure.persistence.domainobject.QualFilingMaterialChangeDO"
|
|
|
|
|
id="QualFilingMaterialChangeResult">
|
|
|
|
|
<id property="id" column="id"/>
|
2026-07-02 14:48:40 +08:00
|
|
|
<result property="filingChangeId" column="filing_change_id"/>
|
2026-07-02 10:07:18 +08:00
|
|
|
<result property="materialType" column="material_type"/>
|
|
|
|
|
<result property="materialContent" column="material_content"/>
|
|
|
|
|
<result property="materialFormat" column="material_format"/>
|
|
|
|
|
<result property="sortOrder" column="sort_order"/>
|
|
|
|
|
<result property="requiredFlag" column="required_flag"/>
|
|
|
|
|
<result property="uploadStatusCode" column="upload_status_code"/>
|
|
|
|
|
<result property="uploadStatusName" column="upload_status_name"/>
|
|
|
|
|
<result property="attachmentDesc" column="attachment_desc"/>
|
|
|
|
|
<result property="attachmentUrl" column="attachment_url"/>
|
|
|
|
|
<result property="materialRemark" column="material_remark"/>
|
2026-07-08 19:45:56 +08:00
|
|
|
<result property="hasSatisfy" column="has_satisfy"/>
|
2026-07-02 10:07:18 +08:00
|
|
|
<result property="deleteEnum" column="delete_enum"/>
|
|
|
|
|
<result property="remarks" column="remarks"/>
|
|
|
|
|
<result property="createName" column="create_name"/>
|
|
|
|
|
<result property="updateName" column="update_name"/>
|
|
|
|
|
<result property="tenantId" column="tenant_id"/>
|
|
|
|
|
<result property="orgId" column="org_id"/>
|
|
|
|
|
<result property="version" column="version"/>
|
|
|
|
|
<result property="createTime" column="create_time"/>
|
|
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
|
|
<result property="createId" column="create_id"/>
|
|
|
|
|
<result property="updateId" column="update_id"/>
|
|
|
|
|
<result property="env" column="env"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectQualFilingMaterialChange">
|
|
|
|
|
select id,
|
2026-07-02 14:48:40 +08:00
|
|
|
filing_change_id,
|
2026-07-02 10:07:18 +08:00
|
|
|
material_type,
|
|
|
|
|
material_content,
|
|
|
|
|
material_format,
|
|
|
|
|
sort_order,
|
|
|
|
|
required_flag,
|
|
|
|
|
upload_status_code,
|
|
|
|
|
upload_status_name,
|
|
|
|
|
attachment_desc,
|
|
|
|
|
attachment_url,
|
|
|
|
|
material_remark,
|
2026-07-08 19:45:56 +08:00
|
|
|
has_satisfy,
|
2026-07-02 10:07:18 +08:00
|
|
|
delete_enum,
|
|
|
|
|
remarks,
|
|
|
|
|
create_name,
|
|
|
|
|
update_name,
|
|
|
|
|
tenant_id,
|
|
|
|
|
org_id,
|
|
|
|
|
version,
|
|
|
|
|
create_time,
|
|
|
|
|
update_time,
|
|
|
|
|
create_id,
|
|
|
|
|
update_id,
|
|
|
|
|
env
|
|
|
|
|
from qual_filing_material_change
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
</mapper>
|