|
|
@ -23,6 +23,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<result property="deviceRunningNumber" column="device_running_number" /> |
|
|
|
<result property="makePhotourl" column="make_photoUrl" /> |
|
|
|
<result property="snCode" column="sn_code" /> |
|
|
|
<result property="softwareVersion" column="software_version" /> |
|
|
|
<result property="aftersalesPhotourl" column="aftersales_photoUrl" /> |
|
|
|
<result property="factoryDate" column="factory_date" /> |
|
|
|
<result property="guaranteePeriod" column="guarantee_period" /> |
|
|
@ -56,7 +57,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
|
|
|
|
<sql id="selectAfterSalesShippingDeviceVo"> |
|
|
|
select shipping_device_code, shipping_device_id, make_no,sales_order_code, out_order_code, material_no, material_photoUrl, material_name, material_type, material_class, material_model_code, material_unit, material_brand, material_describe, |
|
|
|
device_model_code, device_running_number, make_photoUrl, sn_code, aftersales_photoUrl, factory_date, guarantee_period, guarantee_period_flag, lock_date, lock_date_flag, wastage_expire_date, wastage_expire_flag, |
|
|
|
device_model_code, device_running_number, make_photoUrl, sn_code, software_version, aftersales_photoUrl, factory_date, guarantee_period, guarantee_period_flag, lock_date, lock_date_flag, wastage_expire_date, wastage_expire_flag, |
|
|
|
component_guarantee_date, component_guarantee_flag, engineer_name, salesman_name, make_name,customer_id, customer_name, maintain_order_code, maintain_time, create_by, create_time, update_by, update_time, |
|
|
|
add_shipping_device_flag,is_confirm_receiving_flag, is_confirm_check_flag,start_make_time, end_make_time, add_process_issue_record_flag,quality_status from aftersales_shipping_device |
|
|
|
</sql> |
|
|
@ -211,6 +212,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="deviceRunningNumber != null">device_running_number,</if> |
|
|
|
<if test="makePhotourl != null">make_photoUrl,</if> |
|
|
|
<if test="snCode != null">sn_code,</if> |
|
|
|
<if test="softwareVersion != null">software_version,</if> |
|
|
|
<if test="aftersalesPhotourl != null">aftersales_photoUrl,</if> |
|
|
|
<if test="factoryDate != null">factory_date,</if> |
|
|
|
<if test="guaranteePeriod != null">guarantee_period,</if> |
|
|
@ -258,6 +260,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="deviceRunningNumber != null">#{deviceRunningNumber},</if> |
|
|
|
<if test="makePhotourl != null">#{makePhotourl},</if> |
|
|
|
<if test="snCode != null">#{snCode},</if> |
|
|
|
<if test="softwareVersion != null">#{softwareVersion},</if> |
|
|
|
<if test="aftersalesPhotourl != null">#{aftersalesPhotourl},</if> |
|
|
|
<if test="factoryDate != null">#{factoryDate},</if> |
|
|
|
<if test="guaranteePeriod != null">#{guaranteePeriod},</if> |
|
|
@ -309,6 +312,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="deviceRunningNumber != null">device_running_number = #{deviceRunningNumber},</if> |
|
|
|
<if test="makePhotourl != null">make_photoUrl = #{makePhotourl},</if> |
|
|
|
<if test="snCode != null">sn_code = #{snCode},</if> |
|
|
|
<if test="softwareVersion != null">software_version = #{softwareVersion},</if> |
|
|
|
<if test="aftersalesPhotourl != null">aftersales_photoUrl = #{aftersalesPhotourl},</if> |
|
|
|
<if test="factoryDate != null">factory_date = #{factoryDate},</if> |
|
|
|
<if test="guaranteePeriod != null">guarantee_period = #{guaranteePeriod},</if> |
|
|
|