|
@@ -16,22 +16,27 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="preparedDepartment" column="prepared_department" />
|
|
|
<result property="corporation" column="corporation" />
|
|
|
<result property="recordStatus" column="record_status" />
|
|
|
+ <result property="orderType" column="order_type" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTbAssetOrderVo">
|
|
|
- select id, order_number, asset_total_original_value, asset_total_net_value, application_date, application_department, reason, prepared_by, prepared_department, corporation, record_status from tb_asset_order
|
|
|
+ select id, order_number, asset_total_original_value, asset_total_net_value, application_date, application_department, reason, prepared_by, prepared_department, corporation, record_status, order_type from tb_asset_order
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTbAssetOrderList" parameterType="TbAssetOrder" resultMap="TbAssetOrderResult">
|
|
|
<include refid="selectTbAssetOrderVo"/>
|
|
|
<where>
|
|
|
<if test="orderNumber != null and orderNumber != ''"> and order_number = #{orderNumber}</if>
|
|
|
+ <if test="assetTotalOriginalValue != null and assetTotalOriginalValue != ''"> and asset_total_original_value = #{assetTotalOriginalValue}</if>
|
|
|
+ <if test="assetTotalNetValue != null and assetTotalNetValue != ''"> and asset_total_net_value = #{assetTotalNetValue}</if>
|
|
|
<if test="applicationDate != null "> and application_date = #{applicationDate}</if>
|
|
|
<if test="applicationDepartment != null and applicationDepartment != ''"> and application_department = #{applicationDepartment}</if>
|
|
|
+ <if test="reason != null and reason != ''"> and reason = #{reason}</if>
|
|
|
<if test="preparedBy != null and preparedBy != ''"> and prepared_by = #{preparedBy}</if>
|
|
|
<if test="preparedDepartment != null and preparedDepartment != ''"> and prepared_department = #{preparedDepartment}</if>
|
|
|
<if test="corporation != null and corporation != ''"> and corporation = #{corporation}</if>
|
|
|
<if test="recordStatus != null "> and record_status = #{recordStatus}</if>
|
|
|
+ <if test="orderType != null "> and order_type = #{orderType}</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
@@ -53,6 +58,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="preparedDepartment != null">prepared_department,</if>
|
|
|
<if test="corporation != null">corporation,</if>
|
|
|
<if test="recordStatus != null">record_status,</if>
|
|
|
+ <if test="orderType != null">order_type,</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="orderNumber != null and orderNumber != ''">#{orderNumber},</if>
|
|
@@ -65,6 +71,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="preparedDepartment != null">#{preparedDepartment},</if>
|
|
|
<if test="corporation != null">#{corporation},</if>
|
|
|
<if test="recordStatus != null">#{recordStatus},</if>
|
|
|
+ <if test="orderType != null">#{orderType},</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
|
|
@@ -81,6 +88,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="preparedDepartment != null">prepared_department = #{preparedDepartment},</if>
|
|
|
<if test="corporation != null">corporation = #{corporation},</if>
|
|
|
<if test="recordStatus != null">record_status = #{recordStatus},</if>
|
|
|
+ <if test="orderType != null">order_type = #{orderType},</if>
|
|
|
</trim>
|
|
|
where id = #{id}
|
|
|
</update>
|