|
|
@ -25,6 +25,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<result property="materialProcessMethod" column="material_process_method" /> |
|
|
|
<result property="refundsExchangesNum" column="refunds_exchanges_num" /> |
|
|
|
<result property="deliveryInspectionTime" column="delivery_inspection_time" /> |
|
|
|
<result property="inspectionTime" column="inspection_time" /> |
|
|
|
<result property="qualityRemark" column="quality_remark" /> |
|
|
|
<result property="remark" column="remark" /> |
|
|
|
<result property="createBy" column="create_by" /> |
|
|
@ -34,7 +35,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
</resultMap> |
|
|
|
|
|
|
|
<sql id="selectQualityRefundsExchangesDetailVo"> |
|
|
|
select refunds_exchanges_detail_id, refunds_exchanges_code, refunds_exchanges_status, quality_warehouse_status, quality_purchase_status, related_order_code, in_storage_code, quality_return_node, material_total, num_total, material_no, material_name, material_type, material_photoUrl, material_brand, material_unit, material_describe, material_process_method, refunds_exchanges_num, delivery_inspection_time, quality_remark, remark, create_by, create_time, update_by, update_time from quality_refunds_exchanges_detail |
|
|
|
select refunds_exchanges_detail_id, refunds_exchanges_code, refunds_exchanges_status, quality_warehouse_status, quality_purchase_status, related_order_code, in_storage_code, quality_return_node, material_total, num_total, material_no, material_name, material_type, material_photoUrl, material_brand, material_unit, material_describe, material_process_method, refunds_exchanges_num, delivery_inspection_time, inspection_time ,quality_remark, remark, create_by, create_time, update_by, update_time from quality_refunds_exchanges_detail |
|
|
|
</sql> |
|
|
|
|
|
|
|
<select id="selectQualityRefundsExchangesDetailList" parameterType="QualityRefundsExchangesDetail" resultMap="QualityRefundsExchangesDetailResult"> |
|
|
@ -70,6 +71,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="materialProcessMethod != null">material_process_method,</if> |
|
|
|
<if test="refundsExchangesNum != null">refunds_exchanges_num,</if> |
|
|
|
<if test="deliveryInspectionTime != null">delivery_inspection_time,</if> |
|
|
|
<if test="inspectionTime != null">inspection_time,</if> |
|
|
|
<if test="qualityRemark != null">quality_remark,</if> |
|
|
|
<if test="remark != null">remark,</if> |
|
|
|
<if test="createBy != null">create_by,</if> |
|
|
@ -97,6 +99,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="materialProcessMethod != null">#{materialProcessMethod},</if> |
|
|
|
<if test="refundsExchangesNum != null">#{refundsExchangesNum},</if> |
|
|
|
<if test="deliveryInspectionTime != null">#{deliveryInspectionTime},</if> |
|
|
|
<if test="inspectionTime != null">#{inspectionTime},</if> |
|
|
|
<if test="qualityRemark != null">#{qualityRemark},</if> |
|
|
|
<if test="remark != null">#{remark},</if> |
|
|
|
<if test="createBy != null">#{createBy},</if> |
|
|
@ -128,6 +131,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="materialProcessMethod != null">material_process_method = #{materialProcessMethod},</if> |
|
|
|
<if test="refundsExchangesNum != null">refunds_exchanges_num = #{refundsExchangesNum},</if> |
|
|
|
<if test="deliveryInspectionTime != null">delivery_inspection_time = #{deliveryInspectionTime},</if> |
|
|
|
<if test="inspectionTime != null">inspection_time = #{inspectionTime},</if> |
|
|
|
<if test="qualityRemark != null">quality_remark = #{qualityRemark},</if> |
|
|
|
<if test="remark != null">remark = #{remark},</if> |
|
|
|
<if test="createBy != null">create_by = #{createBy},</if> |
|
|
|