|
@@ -21,20 +21,25 @@
|
|
<result column="DELETED" jdbcType="DECIMAL" property="deleted" />
|
|
<result column="DELETED" jdbcType="DECIMAL" property="deleted" />
|
|
<result column="EAS_CONSIGNEE_ID" jdbcType="VARCHAR" property="easConsigneeId" />
|
|
<result column="EAS_CONSIGNEE_ID" jdbcType="VARCHAR" property="easConsigneeId" />
|
|
<result column="CONSIGNEE_CODE" jdbcType="VARCHAR" property="consigneeCode" />
|
|
<result column="CONSIGNEE_CODE" jdbcType="VARCHAR" property="consigneeCode" />
|
|
|
|
+ <result column="CONSIGNEE_FAR_ID" jdbcType="DECIMAL" property="consigneeFarId" />
|
|
|
|
+ <result column="AREA_ID" jdbcType="DECIMAL" property="areaId" />
|
|
|
|
+ <result column="CONSIGNEE_SSO_ID" jdbcType="VARCHAR" property="consigneeSsoId" />
|
|
|
|
+ <result column="CONSIGNEE_SSO_CODE" jdbcType="VARCHAR" property="consigneeSsoCode" />
|
|
</resultMap>
|
|
</resultMap>
|
|
<sql id="columns">
|
|
<sql id="columns">
|
|
CONSIGNEE_ID, CONSIGNEE_COMPANY_NAME, CONSIGNEE_ABBREVIATION, CONSIGNEE_REGISTERED_ADDRESS,
|
|
CONSIGNEE_ID, CONSIGNEE_COMPANY_NAME, CONSIGNEE_ABBREVIATION, CONSIGNEE_REGISTERED_ADDRESS,
|
|
CONSIGNEE_RECEIVE_ADDRESS, CONSIGNEE_REGISTRATION_TIME, CONSIGNEE_CONTACT_NAME, CONSIGNEE_WARRANTY_AMOUNT,
|
|
CONSIGNEE_RECEIVE_ADDRESS, CONSIGNEE_REGISTRATION_TIME, CONSIGNEE_CONTACT_NAME, CONSIGNEE_WARRANTY_AMOUNT,
|
|
CONSIGNEE_WARRANTY_WEIGHT, CONSIGNEE_CONTACT_TEL, CONSIGNEE_EXCHANGE_DELIVERY, INSERT_USERNAME,
|
|
CONSIGNEE_WARRANTY_WEIGHT, CONSIGNEE_CONTACT_TEL, CONSIGNEE_EXCHANGE_DELIVERY, INSERT_USERNAME,
|
|
INSERT_TIME, UPDATE_USERNAME, UPDATE_TIME, INSERT_UPDATE_REMARK, DELETED, EAS_CONSIGNEE_ID,
|
|
INSERT_TIME, UPDATE_USERNAME, UPDATE_TIME, INSERT_UPDATE_REMARK, DELETED, EAS_CONSIGNEE_ID,
|
|
- CONSIGNEE_CODE
|
|
|
|
|
|
+ CONSIGNEE_CODE, CONSIGNEE_FAR_ID, AREA_ID, CONSIGNEE_SSO_ID, CONSIGNEE_SSO_CODE
|
|
</sql>
|
|
</sql>
|
|
<sql id="columns_alias">
|
|
<sql id="columns_alias">
|
|
t.CONSIGNEE_ID, t.CONSIGNEE_COMPANY_NAME, t.CONSIGNEE_ABBREVIATION, t.CONSIGNEE_REGISTERED_ADDRESS,
|
|
t.CONSIGNEE_ID, t.CONSIGNEE_COMPANY_NAME, t.CONSIGNEE_ABBREVIATION, t.CONSIGNEE_REGISTERED_ADDRESS,
|
|
t.CONSIGNEE_RECEIVE_ADDRESS, t.CONSIGNEE_REGISTRATION_TIME, t.CONSIGNEE_CONTACT_NAME,
|
|
t.CONSIGNEE_RECEIVE_ADDRESS, t.CONSIGNEE_REGISTRATION_TIME, t.CONSIGNEE_CONTACT_NAME,
|
|
t.CONSIGNEE_WARRANTY_AMOUNT, t.CONSIGNEE_WARRANTY_WEIGHT, t.CONSIGNEE_CONTACT_TEL,
|
|
t.CONSIGNEE_WARRANTY_AMOUNT, t.CONSIGNEE_WARRANTY_WEIGHT, t.CONSIGNEE_CONTACT_TEL,
|
|
t.CONSIGNEE_EXCHANGE_DELIVERY, t.INSERT_USERNAME, t.INSERT_TIME, t.UPDATE_USERNAME,
|
|
t.CONSIGNEE_EXCHANGE_DELIVERY, t.INSERT_USERNAME, t.INSERT_TIME, t.UPDATE_USERNAME,
|
|
- t.UPDATE_TIME, t.INSERT_UPDATE_REMARK, t.DELETED, t.EAS_CONSIGNEE_ID, t.CONSIGNEE_CODE
|
|
|
|
|
|
+ t.UPDATE_TIME, t.INSERT_UPDATE_REMARK, t.DELETED, t.EAS_CONSIGNEE_ID, t.CONSIGNEE_CODE,
|
|
|
|
+ t.CONSIGNEE_FAR_ID, t.AREA_ID, t.CONSIGNEE_SSO_ID, t.CONSIGNEE_SSO_CODE
|
|
</sql>
|
|
</sql>
|
|
<sql id="select">
|
|
<sql id="select">
|
|
SELECT <include refid="columns" /> FROM RMS_CONSIGNEE
|
|
SELECT <include refid="columns" /> FROM RMS_CONSIGNEE
|
|
@@ -101,6 +106,18 @@
|
|
<if test="consigneeCode != null and consigneeCode != ''">
|
|
<if test="consigneeCode != null and consigneeCode != ''">
|
|
and CONSIGNEE_CODE = #{consigneeCode}
|
|
and CONSIGNEE_CODE = #{consigneeCode}
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="consigneeFarId != null">
|
|
|
|
+ and CONSIGNEE_FAR_ID = #{consigneeFarId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="areaId != null">
|
|
|
|
+ and AREA_ID = #{areaId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoId != null and consigneeSsoId != ''">
|
|
|
|
+ and CONSIGNEE_SSO_ID = #{consigneeSsoId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoCode != null and consigneeSsoCode != ''">
|
|
|
|
+ and CONSIGNEE_SSO_CODE = #{consigneeSsoCode}
|
|
|
|
+ </if>
|
|
</where>
|
|
</where>
|
|
</sql>
|
|
</sql>
|
|
<sql id="whereLike">
|
|
<sql id="whereLike">
|
|
@@ -162,6 +179,18 @@
|
|
<if test="consigneeCode != null and consigneeCode != ''">
|
|
<if test="consigneeCode != null and consigneeCode != ''">
|
|
and CONSIGNEE_CODE LIKE '%${consigneeCode}%'
|
|
and CONSIGNEE_CODE LIKE '%${consigneeCode}%'
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="consigneeFarId != null">
|
|
|
|
+ and CONSIGNEE_FAR_ID = #{consigneeFarId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="areaId != null">
|
|
|
|
+ and AREA_ID = #{areaId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoId != null and consigneeSsoId != ''">
|
|
|
|
+ and CONSIGNEE_SSO_ID LIKE '%${consigneeSsoId}%'
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoCode != null and consigneeSsoCode != ''">
|
|
|
|
+ and CONSIGNEE_SSO_CODE LIKE '%${consigneeSsoCode}%'
|
|
|
|
+ </if>
|
|
</where>
|
|
</where>
|
|
</sql>
|
|
</sql>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
@@ -225,6 +254,18 @@
|
|
<if test="consigneeCode != null and consigneeCode != ''">
|
|
<if test="consigneeCode != null and consigneeCode != ''">
|
|
or CONSIGNEE_CODE = #{consigneeCode}
|
|
or CONSIGNEE_CODE = #{consigneeCode}
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="consigneeFarId != null">
|
|
|
|
+ or CONSIGNEE_FAR_ID = #{consigneeFarId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="areaId != null">
|
|
|
|
+ or AREA_ID = #{areaId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoId != null and consigneeSsoId != ''">
|
|
|
|
+ or CONSIGNEE_SSO_ID = #{consigneeSsoId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoCode != null and consigneeSsoCode != ''">
|
|
|
|
+ or CONSIGNEE_SSO_CODE = #{consigneeSsoCode}
|
|
|
|
+ </if>
|
|
</delete>
|
|
</delete>
|
|
<insert id="insert" parameterType="com.steerinfo.dil.model.RmsConsignee">
|
|
<insert id="insert" parameterType="com.steerinfo.dil.model.RmsConsignee">
|
|
insert into RMS_CONSIGNEE (CONSIGNEE_ID, CONSIGNEE_COMPANY_NAME,
|
|
insert into RMS_CONSIGNEE (CONSIGNEE_ID, CONSIGNEE_COMPANY_NAME,
|
|
@@ -235,7 +276,8 @@
|
|
CONSIGNEE_EXCHANGE_DELIVERY, INSERT_USERNAME,
|
|
CONSIGNEE_EXCHANGE_DELIVERY, INSERT_USERNAME,
|
|
INSERT_TIME, UPDATE_USERNAME, UPDATE_TIME,
|
|
INSERT_TIME, UPDATE_USERNAME, UPDATE_TIME,
|
|
INSERT_UPDATE_REMARK, DELETED, EAS_CONSIGNEE_ID,
|
|
INSERT_UPDATE_REMARK, DELETED, EAS_CONSIGNEE_ID,
|
|
- CONSIGNEE_CODE)
|
|
|
|
|
|
+ CONSIGNEE_CODE, CONSIGNEE_FAR_ID, AREA_ID,
|
|
|
|
+ CONSIGNEE_SSO_ID, CONSIGNEE_SSO_CODE)
|
|
values (#{consigneeId,jdbcType=DECIMAL}, #{consigneeCompanyName,jdbcType=VARCHAR},
|
|
values (#{consigneeId,jdbcType=DECIMAL}, #{consigneeCompanyName,jdbcType=VARCHAR},
|
|
#{consigneeAbbreviation,jdbcType=VARCHAR}, #{consigneeRegisteredAddress,jdbcType=VARCHAR},
|
|
#{consigneeAbbreviation,jdbcType=VARCHAR}, #{consigneeRegisteredAddress,jdbcType=VARCHAR},
|
|
#{consigneeReceiveAddress,jdbcType=VARCHAR}, #{consigneeRegistrationTime,jdbcType=TIMESTAMP},
|
|
#{consigneeReceiveAddress,jdbcType=VARCHAR}, #{consigneeRegistrationTime,jdbcType=TIMESTAMP},
|
|
@@ -244,7 +286,8 @@
|
|
#{consigneeExchangeDelivery,jdbcType=DECIMAL}, #{insertUsername,jdbcType=VARCHAR},
|
|
#{consigneeExchangeDelivery,jdbcType=DECIMAL}, #{insertUsername,jdbcType=VARCHAR},
|
|
#{insertTime,jdbcType=TIMESTAMP}, #{updateUsername,jdbcType=VARCHAR}, #{updateTime,jdbcType=TIMESTAMP},
|
|
#{insertTime,jdbcType=TIMESTAMP}, #{updateUsername,jdbcType=VARCHAR}, #{updateTime,jdbcType=TIMESTAMP},
|
|
#{insertUpdateRemark,jdbcType=VARCHAR}, #{deleted,jdbcType=DECIMAL}, #{easConsigneeId,jdbcType=VARCHAR},
|
|
#{insertUpdateRemark,jdbcType=VARCHAR}, #{deleted,jdbcType=DECIMAL}, #{easConsigneeId,jdbcType=VARCHAR},
|
|
- #{consigneeCode,jdbcType=VARCHAR})
|
|
|
|
|
|
+ #{consigneeCode,jdbcType=VARCHAR}, #{consigneeFarId,jdbcType=DECIMAL}, #{areaId,jdbcType=DECIMAL},
|
|
|
|
+ #{consigneeSsoId,jdbcType=VARCHAR}, #{consigneeSsoCode,jdbcType=VARCHAR})
|
|
</insert>
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="com.steerinfo.dil.model.RmsConsignee">
|
|
<insert id="insertSelective" parameterType="com.steerinfo.dil.model.RmsConsignee">
|
|
insert into RMS_CONSIGNEE
|
|
insert into RMS_CONSIGNEE
|
|
@@ -306,6 +349,18 @@
|
|
<if test="consigneeCode != null">
|
|
<if test="consigneeCode != null">
|
|
CONSIGNEE_CODE,
|
|
CONSIGNEE_CODE,
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="consigneeFarId != null">
|
|
|
|
+ CONSIGNEE_FAR_ID,
|
|
|
|
+ </if>
|
|
|
|
+ <if test="areaId != null">
|
|
|
|
+ AREA_ID,
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoId != null">
|
|
|
|
+ CONSIGNEE_SSO_ID,
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoCode != null">
|
|
|
|
+ CONSIGNEE_SSO_CODE,
|
|
|
|
+ </if>
|
|
</trim>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="consigneeId != null">
|
|
<if test="consigneeId != null">
|
|
@@ -365,6 +420,18 @@
|
|
<if test="consigneeCode != null">
|
|
<if test="consigneeCode != null">
|
|
#{consigneeCode,jdbcType=VARCHAR},
|
|
#{consigneeCode,jdbcType=VARCHAR},
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="consigneeFarId != null">
|
|
|
|
+ #{consigneeFarId,jdbcType=DECIMAL},
|
|
|
|
+ </if>
|
|
|
|
+ <if test="areaId != null">
|
|
|
|
+ #{areaId,jdbcType=DECIMAL},
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoId != null">
|
|
|
|
+ #{consigneeSsoId,jdbcType=VARCHAR},
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoCode != null">
|
|
|
|
+ #{consigneeSsoCode,jdbcType=VARCHAR},
|
|
|
|
+ </if>
|
|
</trim>
|
|
</trim>
|
|
</insert>
|
|
</insert>
|
|
<update id="updateByPrimaryKey" parameterType="com.steerinfo.dil.model.RmsConsignee">
|
|
<update id="updateByPrimaryKey" parameterType="com.steerinfo.dil.model.RmsConsignee">
|
|
@@ -386,7 +453,11 @@
|
|
INSERT_UPDATE_REMARK = #{insertUpdateRemark,jdbcType=VARCHAR},
|
|
INSERT_UPDATE_REMARK = #{insertUpdateRemark,jdbcType=VARCHAR},
|
|
DELETED = #{deleted,jdbcType=DECIMAL},
|
|
DELETED = #{deleted,jdbcType=DECIMAL},
|
|
EAS_CONSIGNEE_ID = #{easConsigneeId,jdbcType=VARCHAR},
|
|
EAS_CONSIGNEE_ID = #{easConsigneeId,jdbcType=VARCHAR},
|
|
- CONSIGNEE_CODE = #{consigneeCode,jdbcType=VARCHAR}
|
|
|
|
|
|
+ CONSIGNEE_CODE = #{consigneeCode,jdbcType=VARCHAR},
|
|
|
|
+ CONSIGNEE_FAR_ID = #{consigneeFarId,jdbcType=DECIMAL},
|
|
|
|
+ AREA_ID = #{areaId,jdbcType=DECIMAL},
|
|
|
|
+ CONSIGNEE_SSO_ID = #{consigneeSsoId,jdbcType=VARCHAR},
|
|
|
|
+ CONSIGNEE_SSO_CODE = #{consigneeSsoCode,jdbcType=VARCHAR}
|
|
where CONSIGNEE_ID = #{consigneeId,jdbcType=DECIMAL}
|
|
where CONSIGNEE_ID = #{consigneeId,jdbcType=DECIMAL}
|
|
</update>
|
|
</update>
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.steerinfo.dil.model.RmsConsignee">
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.steerinfo.dil.model.RmsConsignee">
|
|
@@ -446,6 +517,18 @@
|
|
<if test="consigneeCode != null">
|
|
<if test="consigneeCode != null">
|
|
CONSIGNEE_CODE = #{consigneeCode,jdbcType=VARCHAR},
|
|
CONSIGNEE_CODE = #{consigneeCode,jdbcType=VARCHAR},
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="consigneeFarId != null">
|
|
|
|
+ CONSIGNEE_FAR_ID = #{consigneeFarId,jdbcType=DECIMAL},
|
|
|
|
+ </if>
|
|
|
|
+ <if test="areaId != null">
|
|
|
|
+ AREA_ID = #{areaId,jdbcType=DECIMAL},
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoId != null">
|
|
|
|
+ CONSIGNEE_SSO_ID = #{consigneeSsoId,jdbcType=VARCHAR},
|
|
|
|
+ </if>
|
|
|
|
+ <if test="consigneeSsoCode != null">
|
|
|
|
+ CONSIGNEE_SSO_CODE = #{consigneeSsoCode,jdbcType=VARCHAR},
|
|
|
|
+ </if>
|
|
</set>
|
|
</set>
|
|
where CONSIGNEE_ID = #{consigneeId,jdbcType=DECIMAL}
|
|
where CONSIGNEE_ID = #{consigneeId,jdbcType=DECIMAL}
|
|
</update>
|
|
</update>
|
|
@@ -472,8 +555,9 @@
|
|
INSERT_USERNAME, INSERT_TIME,
|
|
INSERT_USERNAME, INSERT_TIME,
|
|
UPDATE_USERNAME, UPDATE_TIME,
|
|
UPDATE_USERNAME, UPDATE_TIME,
|
|
INSERT_UPDATE_REMARK, DELETED,
|
|
INSERT_UPDATE_REMARK, DELETED,
|
|
- EAS_CONSIGNEE_ID, CONSIGNEE_CODE
|
|
|
|
- )
|
|
|
|
|
|
+ EAS_CONSIGNEE_ID, CONSIGNEE_CODE,
|
|
|
|
+ CONSIGNEE_FAR_ID, AREA_ID, CONSIGNEE_SSO_ID,
|
|
|
|
+ CONSIGNEE_SSO_CODE)
|
|
( <foreach collection="list" item="item" separator="union all">
|
|
( <foreach collection="list" item="item" separator="union all">
|
|
select
|
|
select
|
|
#{item.consigneeId,jdbcType=DECIMAL},
|
|
#{item.consigneeId,jdbcType=DECIMAL},
|
|
@@ -485,8 +569,9 @@
|
|
#{item.insertUsername,jdbcType=VARCHAR}, #{item.insertTime,jdbcType=TIMESTAMP},
|
|
#{item.insertUsername,jdbcType=VARCHAR}, #{item.insertTime,jdbcType=TIMESTAMP},
|
|
#{item.updateUsername,jdbcType=VARCHAR}, #{item.updateTime,jdbcType=TIMESTAMP},
|
|
#{item.updateUsername,jdbcType=VARCHAR}, #{item.updateTime,jdbcType=TIMESTAMP},
|
|
#{item.insertUpdateRemark,jdbcType=VARCHAR}, #{item.deleted,jdbcType=DECIMAL},
|
|
#{item.insertUpdateRemark,jdbcType=VARCHAR}, #{item.deleted,jdbcType=DECIMAL},
|
|
- #{item.easConsigneeId,jdbcType=VARCHAR}, #{item.consigneeCode,jdbcType=VARCHAR}
|
|
|
|
- from dual
|
|
|
|
|
|
+ #{item.easConsigneeId,jdbcType=VARCHAR}, #{item.consigneeCode,jdbcType=VARCHAR},
|
|
|
|
+ #{item.consigneeFarId,jdbcType=DECIMAL}, #{item.areaId,jdbcType=DECIMAL}, #{item.consigneeSsoId,jdbcType=VARCHAR},
|
|
|
|
+ #{item.consigneeSsoCode,jdbcType=VARCHAR} from dual
|
|
</foreach> )
|
|
</foreach> )
|
|
</insert>
|
|
</insert>
|
|
<update id="batchUpdate" parameterType="java.util.List">
|
|
<update id="batchUpdate" parameterType="java.util.List">
|
|
@@ -568,6 +653,22 @@
|
|
<foreach close="end" collection="list" index="index" item="item" open="case CONSIGNEE_ID" separator=" ">
|
|
<foreach close="end" collection="list" index="index" item="item" open="case CONSIGNEE_ID" separator=" ">
|
|
when #{item.consigneeId,jdbcType=DECIMAL} then #{item.consigneeCode,jdbcType=VARCHAR}
|
|
when #{item.consigneeId,jdbcType=DECIMAL} then #{item.consigneeCode,jdbcType=VARCHAR}
|
|
</foreach>
|
|
</foreach>
|
|
|
|
+ ,CONSIGNEE_FAR_ID=
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case CONSIGNEE_ID" separator=" ">
|
|
|
|
+ when #{item.consigneeId,jdbcType=DECIMAL} then #{item.consigneeFarId,jdbcType=DECIMAL}
|
|
|
|
+ </foreach>
|
|
|
|
+ ,AREA_ID=
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case CONSIGNEE_ID" separator=" ">
|
|
|
|
+ when #{item.consigneeId,jdbcType=DECIMAL} then #{item.areaId,jdbcType=DECIMAL}
|
|
|
|
+ </foreach>
|
|
|
|
+ ,CONSIGNEE_SSO_ID=
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case CONSIGNEE_ID" separator=" ">
|
|
|
|
+ when #{item.consigneeId,jdbcType=DECIMAL} then #{item.consigneeSsoId,jdbcType=VARCHAR}
|
|
|
|
+ </foreach>
|
|
|
|
+ ,CONSIGNEE_SSO_CODE=
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case CONSIGNEE_ID" separator=" ">
|
|
|
|
+ when #{item.consigneeId,jdbcType=DECIMAL} then #{item.consigneeSsoCode,jdbcType=VARCHAR}
|
|
|
|
+ </foreach>
|
|
where CONSIGNEE_ID in
|
|
where CONSIGNEE_ID in
|
|
<foreach close=")" collection="list" index="index" item="item" open="(" separator=",">
|
|
<foreach close=")" collection="list" index="index" item="item" open="(" separator=",">
|
|
#{item.consigneeId,jdbcType=DECIMAL}
|
|
#{item.consigneeId,jdbcType=DECIMAL}
|
|
@@ -582,5 +683,4 @@
|
|
</delete>
|
|
</delete>
|
|
<!-- 友情提示!!!-->
|
|
<!-- 友情提示!!!-->
|
|
<!-- 请将自己写的代码放在此标签之下,方便以后粘贴复制。-->
|
|
<!-- 请将自己写的代码放在此标签之下,方便以后粘贴复制。-->
|
|
-
|
|
|
|
</mapper>
|
|
</mapper>
|