|
@ -24,6 +24,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<result property="hasOutOrderNum" column="has_out_order_num" /> |
|
|
<result property="hasOutOrderNum" column="has_out_order_num" /> |
|
|
<result property="thisCheckNum" column="this_check_num" /> |
|
|
<result property="thisCheckNum" column="this_check_num" /> |
|
|
<result property="hasCheckNum" column="has_check_num" /> |
|
|
<result property="hasCheckNum" column="has_check_num" /> |
|
|
|
|
|
<result property="hasShippingNum" column="has_shipping_num" /> |
|
|
|
|
|
<result property="hasCompleteNum" column="has_complete_num" /> |
|
|
<result property="createTime" column="create_time" /> |
|
|
<result property="createTime" column="create_time" /> |
|
|
<result property="createBy" column="create_by" /> |
|
|
<result property="createBy" column="create_by" /> |
|
|
<result property="updateBy" column="update_by" /> |
|
|
<result property="updateBy" column="update_by" /> |
|
@ -32,7 +34,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
</resultMap> |
|
|
</resultMap> |
|
|
|
|
|
|
|
|
<sql id="selectSysSalesShippingInformDetailVo"> |
|
|
<sql id="selectSysSalesShippingInformDetailVo"> |
|
|
select shipping_inform_detail_id, out_order_code, customer_id, customer_name, material_no, material_name, material_type, material_photoUrl, material_brand, material_unit, material_describe, material_process_method, material_model, material_specification, make_num, this_shipping_num, has_out_order_num, this_check_num, has_check_num, create_time, create_by, update_by, update_time, remark from sys_sales_shipping_inform_detail |
|
|
select shipping_inform_detail_id, out_order_code, customer_id, customer_name, material_no, material_name, material_type, material_photoUrl, material_brand, material_unit, material_describe, material_process_method, material_model, material_specification, make_num, this_shipping_num, has_out_order_num, this_check_num, has_check_num, has_shipping_num, has_complete_num ,create_time, create_by, update_by, update_time, remark from sys_sales_shipping_inform_detail |
|
|
</sql> |
|
|
</sql> |
|
|
|
|
|
|
|
|
<select id="selectSysSalesShippingInformDetailList" parameterType="SysSalesShippingInformDetail" resultMap="SysSalesShippingInformDetailResult"> |
|
|
<select id="selectSysSalesShippingInformDetailList" parameterType="SysSalesShippingInformDetail" resultMap="SysSalesShippingInformDetailResult"> |
|
@ -81,6 +83,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="hasOutOrderNum != null">has_out_order_num,</if> |
|
|
<if test="hasOutOrderNum != null">has_out_order_num,</if> |
|
|
<if test="thisCheckNum != null">this_check_num,</if> |
|
|
<if test="thisCheckNum != null">this_check_num,</if> |
|
|
<if test="hasCheckNum != null">has_check_num,</if> |
|
|
<if test="hasCheckNum != null">has_check_num,</if> |
|
|
|
|
|
<if test="hasShippingNum != null">has_shipping_num,</if> |
|
|
|
|
|
<if test="hasCompleteNum != null">has_complete_num,</if> |
|
|
<if test="createTime != null">create_time,</if> |
|
|
<if test="createTime != null">create_time,</if> |
|
|
<if test="createBy != null">create_by,</if> |
|
|
<if test="createBy != null">create_by,</if> |
|
|
<if test="updateBy != null">update_by,</if> |
|
|
<if test="updateBy != null">update_by,</if> |
|
@ -106,6 +110,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="hasOutOrderNum != null">#{hasOutOrderNum},</if> |
|
|
<if test="hasOutOrderNum != null">#{hasOutOrderNum},</if> |
|
|
<if test="thisCheckNum != null">#{thisCheckNum},</if> |
|
|
<if test="thisCheckNum != null">#{thisCheckNum},</if> |
|
|
<if test="hasCheckNum != null">#{hasCheckNum},</if> |
|
|
<if test="hasCheckNum != null">#{hasCheckNum},</if> |
|
|
|
|
|
<if test="hasShippingNum != null">#{hasShippingNum},</if> |
|
|
|
|
|
<if test="hasCompleteNum != null">#{hasCompleteNum},</if> |
|
|
<if test="createTime != null">#{createTime},</if> |
|
|
<if test="createTime != null">#{createTime},</if> |
|
|
<if test="createBy != null">#{createBy},</if> |
|
|
<if test="createBy != null">#{createBy},</if> |
|
|
<if test="updateBy != null">#{updateBy},</if> |
|
|
<if test="updateBy != null">#{updateBy},</if> |
|
@ -135,6 +141,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="hasOutOrderNum != null">has_out_order_num = #{hasOutOrderNum},</if> |
|
|
<if test="hasOutOrderNum != null">has_out_order_num = #{hasOutOrderNum},</if> |
|
|
<if test="thisCheckNum != null">this_check_num = #{thisCheckNum},</if> |
|
|
<if test="thisCheckNum != null">this_check_num = #{thisCheckNum},</if> |
|
|
<if test="hasCheckNum != null">has_check_num = #{hasCheckNum},</if> |
|
|
<if test="hasCheckNum != null">has_check_num = #{hasCheckNum},</if> |
|
|
|
|
|
<if test="hasShippingNum != null">has_shipping_num = #{hasShippingNum},</if> |
|
|
|
|
|
<if test="hasCompleteNum != null">has_complete_num = #{hasCompleteNum},</if> |
|
|
<if test="createTime != null">create_time = #{createTime},</if> |
|
|
<if test="createTime != null">create_time = #{createTime},</if> |
|
|
<if test="createBy != null">create_by = #{createBy},</if> |
|
|
<if test="createBy != null">create_by = #{createBy},</if> |
|
|
<if test="updateBy != null">update_by = #{updateBy},</if> |
|
|
<if test="updateBy != null">update_by = #{updateBy},</if> |
|
@ -167,6 +175,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="hasOutOrderNum != null">has_out_order_num = #{hasOutOrderNum},</if> |
|
|
<if test="hasOutOrderNum != null">has_out_order_num = #{hasOutOrderNum},</if> |
|
|
<if test="thisCheckNum != null">this_check_num = #{thisCheckNum},</if> |
|
|
<if test="thisCheckNum != null">this_check_num = #{thisCheckNum},</if> |
|
|
<if test="hasCheckNum != null">has_check_num = #{hasCheckNum},</if> |
|
|
<if test="hasCheckNum != null">has_check_num = #{hasCheckNum},</if> |
|
|
|
|
|
<if test="hasShippingNum != null">has_shipping_num = #{hasShippingNum},</if> |
|
|
|
|
|
<if test="hasCompleteNum != null">has_complete_num = #{hasCompleteNum},</if> |
|
|
<if test="createTime != null">create_time = #{createTime},</if> |
|
|
<if test="createTime != null">create_time = #{createTime},</if> |
|
|
<if test="createBy != null">create_by = #{createBy},</if> |
|
|
<if test="createBy != null">create_by = #{createBy},</if> |
|
|
<if test="updateBy != null">update_by = #{updateBy},</if> |
|
|
<if test="updateBy != null">update_by = #{updateBy},</if> |
|
|