|
@@ -8,8 +8,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="id" column="id" />
|
|
|
<result property="orderNumber" column="order_number" />
|
|
|
<result property="orderType" column="order_type" />
|
|
|
- <result property="assetTotalOriginalValue" column="asset_total_original_value" />
|
|
|
- <result property="assetTotalNetValue" column="asset_total_net_value" />
|
|
|
<result property="applicationDate" column="application_date" />
|
|
|
<result property="applicationDepartment" column="application_department" />
|
|
|
<result property="adjustmentAssetNumber" column="adjustment_asset_number" />
|
|
@@ -31,7 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTbOrderVo">
|
|
|
- select id, order_number, order_type, asset_total_original_value, asset_total_net_value, application_date, application_department, adjustment_asset_number, adjustment_original_asset_info, allocation_call_out_department, allocation_call_out_by, allocation_call_out_date, allocation_call_in_department, allocation_call_in_by, allocation_call_in_date, lend_department, lend_by_sponsor, lend_passing_unit, reason, prepared_by, prepared_department, corporation, record_status from tb_order
|
|
|
+ select id, order_number, order_type, application_date, application_department, adjustment_asset_number, adjustment_original_asset_info, allocation_call_out_department, allocation_call_out_by, allocation_call_out_date, allocation_call_in_department, allocation_call_in_by, allocation_call_in_date, lend_department, lend_by_sponsor, lend_passing_unit, reason, prepared_by, prepared_department, corporation, record_status from tb_order
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTbOrderList" parameterType="TbOrder" resultMap="TbOrderResult">
|
|
@@ -63,15 +61,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<include refid="selectTbOrderVo"/>
|
|
|
where id = #{id}
|
|
|
</select>
|
|
|
+
|
|
|
+ <select id="selectTbOrderByOrderNumber" parameterType="String" resultMap="TbOrderResult">
|
|
|
+ <include refid="selectTbOrderVo"></include>
|
|
|
+ where order_number = #{orderNumber}
|
|
|
+ </select>
|
|
|
|
|
|
<insert id="insertTbOrder" parameterType="TbOrder" useGeneratedKeys="true" keyProperty="id">
|
|
|
insert into tb_order
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
<if test="orderNumber != null and orderNumber != ''">order_number,</if>
|
|
|
- <if test="orderType != null">order_type,</if>
|
|
|
- <if test="assetTotalOriginalValue != null and assetTotalOriginalValue != ''">asset_total_original_value,</if>
|
|
|
- <if test="assetTotalNetValue != null and assetTotalNetValue != ''">asset_total_net_value,</if>
|
|
|
- <if test="applicationDate != null">application_date,</if>
|
|
|
+ <if test="orderType != null">order_type,</if><if test="applicationDate != null">application_date,</if>
|
|
|
<if test="applicationDepartment != null">application_department,</if>
|
|
|
<if test="adjustmentAssetNumber != null">adjustment_asset_number,</if>
|
|
|
<if test="adjustmentOriginalAssetInfo != null">adjustment_original_asset_info,</if>
|
|
@@ -92,10 +92,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="orderNumber != null and orderNumber != ''">#{orderNumber},</if>
|
|
|
- <if test="orderType != null">#{orderType},</if>
|
|
|
- <if test="assetTotalOriginalValue != null and assetTotalOriginalValue != ''">#{assetTotalOriginalValue},</if>
|
|
|
- <if test="assetTotalNetValue != null and assetTotalNetValue != ''">#{assetTotalNetValue},</if>
|
|
|
- <if test="applicationDate != null">#{applicationDate},</if>
|
|
|
+ <if test="orderType != null">#{orderType},</if><if test="applicationDate != null">#{applicationDate},</if>
|
|
|
<if test="applicationDepartment != null">#{applicationDepartment},</if>
|
|
|
<if test="adjustmentAssetNumber != null">#{adjustmentAssetNumber},</if>
|
|
|
<if test="adjustmentOriginalAssetInfo != null">#{adjustmentOriginalAssetInfo},</if>
|
|
@@ -120,10 +117,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
update tb_order
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
<if test="orderNumber != null and orderNumber != ''">order_number = #{orderNumber},</if>
|
|
|
- <if test="orderType != null">order_type = #{orderType},</if>
|
|
|
- <if test="assetTotalOriginalValue != null and assetTotalOriginalValue != ''">asset_total_original_value = #{assetTotalOriginalValue},</if>
|
|
|
- <if test="assetTotalNetValue != null and assetTotalNetValue != ''">asset_total_net_value = #{assetTotalNetValue},</if>
|
|
|
- <if test="applicationDate != null">application_date = #{applicationDate},</if>
|
|
|
+ <if test="orderType != null">order_type = #{orderType},</if><if test="applicationDate != null">application_date = #{applicationDate},</if>
|
|
|
<if test="applicationDepartment != null">application_department = #{applicationDepartment},</if>
|
|
|
<if test="adjustmentAssetNumber != null">adjustment_asset_number = #{adjustmentAssetNumber},</if>
|
|
|
<if test="adjustmentOriginalAssetInfo != null">adjustment_original_asset_info = #{adjustmentOriginalAssetInfo},</if>
|