|
@ -12,6 +12,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<result property="materialName" column="materialName" /> |
|
|
<result property="materialName" column="materialName" /> |
|
|
<result property="materialType" column="materialType" /> |
|
|
<result property="materialType" column="materialType" /> |
|
|
<result property="processMethod" column="processMethod" /> |
|
|
<result property="processMethod" column="processMethod" /> |
|
|
|
|
|
<result property="unit" column="unit" /> |
|
|
|
|
|
<result property="materialModel" column="material_model" /> |
|
|
<result property="brand" column="brand" /> |
|
|
<result property="brand" column="brand" /> |
|
|
<result property="photoUrl" column="photoUrl" /> |
|
|
<result property="photoUrl" column="photoUrl" /> |
|
|
<result property="describe" column="describe" /> |
|
|
<result property="describe" column="describe" /> |
|
@ -39,7 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
</resultMap> |
|
|
</resultMap> |
|
|
|
|
|
|
|
|
<sql id="selectSysCustomerQuoteChildVo"> |
|
|
<sql id="selectSysCustomerQuoteChildVo"> |
|
|
select id, quoteId, materialId, materialCode, materialName, materialType, processMethod, brand, photoUrl, `describe`, |
|
|
select id, quoteId, materialId, materialCode, materialName, materialType, processMethod, unit, material_model, brand, photoUrl, `describe`, |
|
|
countTax, usdTax, materialNum,materialSole, recentQuotation_rmb, recentQuotation_usd, materialRmb, materialNoRmb, materialNoUsd, materialUsd, materialUsdSum, |
|
|
countTax, usdTax, materialNum,materialSole, recentQuotation_rmb, recentQuotation_usd, materialRmb, materialNoRmb, materialNoUsd, materialUsd, materialUsdSum, |
|
|
materialNoUsdSum, materialNoRmbSum, materialRmbSum, create_by, create_time, update_by, |
|
|
materialNoUsdSum, materialNoRmbSum, materialRmbSum, create_by, create_time, update_by, |
|
|
update_time, remark, use_status,audit_status from sys_customer_quotechild |
|
|
update_time, remark, use_status,audit_status from sys_customer_quotechild |
|
@ -76,6 +78,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="materialName != null">materialName,</if> |
|
|
<if test="materialName != null">materialName,</if> |
|
|
<if test="materialType != null">materialType,</if> |
|
|
<if test="materialType != null">materialType,</if> |
|
|
<if test="processMethod != null">processMethod,</if> |
|
|
<if test="processMethod != null">processMethod,</if> |
|
|
|
|
|
<if test="unit != null">unit,</if> |
|
|
|
|
|
<if test="materialModel != null">material_model,</if> |
|
|
<if test="brand != null">brand,</if> |
|
|
<if test="brand != null">brand,</if> |
|
|
<if test="photoUrl != null">photoUrl,</if> |
|
|
<if test="photoUrl != null">photoUrl,</if> |
|
|
<if test="describe != null">`describe`,</if> |
|
|
<if test="describe != null">`describe`,</if> |
|
@ -105,6 +109,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="materialName != null">#{materialName},</if> |
|
|
<if test="materialName != null">#{materialName},</if> |
|
|
<if test="materialType != null">#{materialType},</if> |
|
|
<if test="materialType != null">#{materialType},</if> |
|
|
<if test="processMethod != null">#{processMethod},</if> |
|
|
<if test="processMethod != null">#{processMethod},</if> |
|
|
|
|
|
<if test="unit != null">#{unit},</if> |
|
|
|
|
|
<if test="materialModel != null">#{materialModel},</if> |
|
|
<if test="brand != null">#{brand},</if> |
|
|
<if test="brand != null">#{brand},</if> |
|
|
<if test="photoUrl != null">#{photoUrl},</if> |
|
|
<if test="photoUrl != null">#{photoUrl},</if> |
|
|
<if test="describe != null">#{describe},</if> |
|
|
<if test="describe != null">#{describe},</if> |
|
@ -138,6 +144,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="materialName != null">materialName = #{materialName},</if> |
|
|
<if test="materialName != null">materialName = #{materialName},</if> |
|
|
<if test="materialType != null">materialType = #{materialType},</if> |
|
|
<if test="materialType != null">materialType = #{materialType},</if> |
|
|
<if test="processMethod != null">processMethod = #{processMethod},</if> |
|
|
<if test="processMethod != null">processMethod = #{processMethod},</if> |
|
|
|
|
|
<if test="unit != null">unit = #{unit},</if> |
|
|
|
|
|
<if test="materialModel != null">material_model = #{materialModel},</if> |
|
|
<if test="brand != null">brand = #{brand},</if> |
|
|
<if test="brand != null">brand = #{brand},</if> |
|
|
<if test="photoUrl != null">photoUrl = #{photoUrl},</if> |
|
|
<if test="photoUrl != null">photoUrl = #{photoUrl},</if> |
|
|
<if test="describe != null">`describe` = #{describe},</if> |
|
|
<if test="describe != null">`describe` = #{describe},</if> |
|
|