|
|
@ -20,6 +20,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<result property="customerContact" column="customer_contact" /> |
|
|
|
<result property="contactNumber" column="contact_number" /> |
|
|
|
<result property="customerContactAddress" column="customer_contact_address" /> |
|
|
|
<result property="contactAddressBillto" column="contact_address_billto" /> |
|
|
|
<result property="customerContactBillto" column="customer_contact_billto"/> |
|
|
|
<result property="contactNumberBillto" column="contact_number_billto"/> |
|
|
|
<result property="createTime" column="create_time" /> |
|
|
|
<result property="createBy" column="create_by" /> |
|
|
|
<result property="updateBy" column="update_by" /> |
|
|
@ -36,7 +39,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
</resultMap> |
|
|
|
|
|
|
|
<sql id="selectSysSalesShippingInformVo"> |
|
|
|
select shipping_inform_id, out_order_code, warehouse_out_status, sales_order_code, warehouse_out_type, warehouse_order_type, customer_id, customer_name, business_members, sales_order_number, material_sum, enterprise_sum, customer_contact, contact_number, customer_contact_address, create_time, create_by, update_by, update_time, remark, all_price_excluding_tax_rmb, all_price_excluding_tax_dollar, all_price_includes_tax, planned_delivery_time, acceptance_time, payment_condition, delivery_condition, deliver_time from sys_sales_shipping_inform |
|
|
|
select shipping_inform_id, out_order_code, warehouse_out_status, sales_order_code, warehouse_out_type, warehouse_order_type, customer_id, customer_name, business_members, sales_order_number, material_sum, enterprise_sum, customer_contact, contact_number, customer_contact_address, contact_address_billto, customer_contact_billto, contact_number_billto, create_time, create_by, update_by, update_time, remark, all_price_excluding_tax_rmb, all_price_excluding_tax_dollar, all_price_includes_tax, planned_delivery_time, acceptance_time, payment_condition, delivery_condition, deliver_time from sys_sales_shipping_inform |
|
|
|
</sql> |
|
|
|
|
|
|
|
<select id="selectSysSalesShippingInformList" parameterType="SysSalesShippingInform" resultMap="SysSalesShippingInformResult"> |
|
|
@ -78,6 +81,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="customerContact != null">customer_contact,</if> |
|
|
|
<if test="contactNumber != null">contact_number,</if> |
|
|
|
<if test="customerContactAddress != null">customer_contact_address,</if> |
|
|
|
<if test="contactAddressBillto != null">contact_address_billto,</if> |
|
|
|
<if test="customerContactBillto != null">customer_contact_billto,</if> |
|
|
|
<if test="contactNumberBillto != null">contact_number_billto,</if> |
|
|
|
<if test="createTime != null">create_time,</if> |
|
|
|
<if test="createBy != null">create_by,</if> |
|
|
|
<if test="updateBy != null">update_by,</if> |
|
|
@ -107,6 +113,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="customerContact != null">#{customerContact},</if> |
|
|
|
<if test="contactNumber != null">#{contactNumber},</if> |
|
|
|
<if test="customerContactAddress != null">#{customerContactAddress},</if> |
|
|
|
<if test="contactAddressBillto != null">#{contactAddressBillto},</if> |
|
|
|
<if test="customerContactBillto != null">#{customerContactBillto},</if> |
|
|
|
<if test="contactNumberBillto != null">#{contactNumberBillto},</if> |
|
|
|
<if test="createTime != null">#{createTime},</if> |
|
|
|
<if test="createBy != null">#{createBy},</if> |
|
|
|
<if test="updateBy != null">#{updateBy},</if> |
|
|
@ -140,6 +149,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="customerContact != null">customer_contact = #{customerContact},</if> |
|
|
|
<if test="contactNumber != null">contact_number = #{contactNumber},</if> |
|
|
|
<if test="customerContactAddress != null">customer_contact_address = #{customerContactAddress},</if> |
|
|
|
<if test="contactAddressBillto != null">contact_address_billto = #{contactAddressBillto},</if> |
|
|
|
<if test="customerContactBillto != null">customer_contact_billto = #{customerContactBillto},</if> |
|
|
|
<if test="contactNumberBillto != null">contact_number_billto = #{contactNumberBillto},</if> |
|
|
|
<if test="createTime != null">create_time = #{createTime},</if> |
|
|
|
<if test="createBy != null">create_by = #{createBy},</if> |
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if> |
|
|
@ -174,6 +186,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<if test="customerContact != null">customer_contact = #{customerContact},</if> |
|
|
|
<if test="contactNumber != null">contact_number = #{contactNumber},</if> |
|
|
|
<if test="customerContactAddress != null">customer_contact_address = #{customerContactAddress},</if> |
|
|
|
<if test="contactAddressBillto != null">contact_address_billto = #{contactAddressBillto},</if> |
|
|
|
<if test="customerContactBillto != null">customer_contact_billto = #{customerContactBillto},</if> |
|
|
|
<if test="contactNumberBillto != null">contact_number_billto = #{contactNumberBillto},</if> |
|
|
|
<if test="createTime != null">create_time = #{createTime},</if> |
|
|
|
<if test="createBy != null">create_by = #{createBy},</if> |
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if> |
|
|
|