推送时报关回写到报关明细表 推送时使用该数据

This commit is contained in:
zhaoqing
2026-06-04 15:48:09 +08:00
parent 88e6993dd6
commit 1b1a026adc
8 changed files with 472 additions and 0 deletions
@@ -0,0 +1,72 @@
<?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="com.mhd.wms.domain.customsDeclarationDetail.repository.mapper.CustomsDeclarationDetailMapper">
<resultMap type="com.mhd.wms.domain.customsDeclarationDetail.repository.po.CustomsDeclarationDetailPO" id="CustomsDeclarationDetailResult">
<result property="id" column="id" />
<result property="organizationId" column="organization_id" />
<result property="organizationName" column="organization_name" />
<result property="topOrganizationId" column="top_organization_id" />
<result property="documentNumber" column="document_number" />
<result property="materialBaseInfoId" column="material_base_info_id" />
<result property="materialCode" column="material_code" />
<result property="materialName" column="material_name" />
<result property="bondInvtNo" column="bond_invt_no" />
<result property="invtRow" column="invt_row" />
<result property="createTime" column="create_time" />
<result property="createBy" column="create_by" />
<result property="createByName" column="create_by_name" />
<result property="updateTime" column="update_time" />
<result property="updateBy" column="update_by" />
<result property="updateByName" column="update_by_name" />
<result property="delFlag" column="del_flag" />
</resultMap>
<sql id="selectCustomsDeclarationDetailPo">
select id, organization_id, organization_name, top_organization_id, document_number, material_base_info_id, material_code, material_name, bond_invt_no, invt_row, create_time, create_by, create_by_name, update_time, update_by, update_by_name, del_flag from customs_declaration_detail
</sql>
<sql id="selectCustomsDeclarationDetailPo1">
<where>
<if test="documentNumber != null and documentNumber != ''">
and document_number = #{documentNumber}
</if>
<if test="organizationId != null ">
and organization_id = #{organizationId}
</if>
<if test="organizationName != null and organizationName != ''">
and organization_name like concat('%', #{organizationName}, '%')
</if>
<if test="topOrganizationId != null ">
and top_organization_id = #{topOrganizationId}
</if>
<if test="materialBaseInfoId != null ">
and material_base_info_id = #{materialBaseInfoId}
</if>
<if test="materialCode != null and materialCode != ''">
and material_code = #{materialCode}
</if>
<if test="materialName != null and materialName != ''">
and material_name like concat('%', #{materialName}, '%')
</if>
<if test="documentNumberList != null and documentNumberList.size > 0">
and document_number in
<foreach collection="documentNumberList" item="item" index="index" open="(" close=")" separator=",">
#{item}
</foreach>
</if>
<choose>
<when test="delFlag != null"> and del_flag = #{delFlag} </when>
<otherwise> and del_flag = 1 </otherwise>
</choose>
</where>
</sql>
<select id="queryList" parameterType="com.mhd.wms.domain.customsDeclarationDetail.repository.todo.CustomsDeclarationDetailDO" resultMap="CustomsDeclarationDetailResult">
<include refid="selectCustomsDeclarationDetailPo"/>
<include refid="selectCustomsDeclarationDetailPo1"/>
</select>
</mapper>