'123'
This commit is contained in:
parent
d8d2f3a6b0
commit
38404e5262
|
@ -62,6 +62,8 @@ public class QuotMaterial extends BaseEntity
|
||||||
/** 料价价差率 */
|
/** 料价价差率 */
|
||||||
private String matMatpriceDiff;
|
private String matMatpriceDiff;
|
||||||
|
|
||||||
|
/** 排序 */
|
||||||
|
private Integer index;//序号
|
||||||
|
|
||||||
/** */
|
/** */
|
||||||
private String quotId;
|
private String quotId;
|
||||||
|
@ -141,6 +143,9 @@ public class QuotMaterial extends BaseEntity
|
||||||
public String getMatMatpriceDiff() { return matMatpriceDiff; }
|
public String getMatMatpriceDiff() { return matMatpriceDiff; }
|
||||||
|
|
||||||
public void setMatMatpriceDiff(String matMatpriceDiff) { this.matMatpriceDiff = matMatpriceDiff; }
|
public void setMatMatpriceDiff(String matMatpriceDiff) { this.matMatpriceDiff = matMatpriceDiff; }
|
||||||
|
public Integer getIndex() { return index; }
|
||||||
|
|
||||||
|
public void setIndex(Integer index) { this.index = index; }
|
||||||
public void setQuotId(String quotId)
|
public void setQuotId(String quotId)
|
||||||
{
|
{
|
||||||
this.quotId = quotId;
|
this.quotId = quotId;
|
||||||
|
|
|
@ -152,6 +152,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
left join quot_material b on b.quot_id = a.quot_id
|
left join quot_material b on b.quot_id = a.quot_id
|
||||||
<include refid="quotJoins"/>
|
<include refid="quotJoins"/>
|
||||||
where a.quot_id = #{quotId}
|
where a.quot_id = #{quotId}
|
||||||
|
order by b.number
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="checkExistQuot" parameterType="String" resultType="String">
|
<select id="checkExistQuot" parameterType="String" resultType="String">
|
||||||
|
@ -314,9 +315,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
</delete>
|
</delete>
|
||||||
|
|
||||||
<insert id="batchQuotMaterial">
|
<insert id="batchQuotMaterial">
|
||||||
insert into quot_material( mat_id, mat_xingh, mat_guig, mat_diany,mat_standard, mat_danw, mat_sl,mat_remark, quot_id) values
|
insert into quot_material( mat_id, mat_xingh, mat_guig, mat_diany,mat_standard, mat_danw, mat_sl,mat_remark, quot_id,number) values
|
||||||
<foreach item="item" index="index" collection="list" separator=",">
|
<foreach item="item" index="index" collection="list" separator=",">
|
||||||
( #{item.matId}, #{item.matXingh}, #{item.matGuig}, #{item.matDiany}, #{item.matStandard}, #{item.matDanw}, cast(#{item.matSl,jdbcType=DECIMAL} as decimal(18,3)),#{item.matRemark}, #{item.quotId})
|
( #{item.matId}, #{item.matXingh}, #{item.matGuig}, #{item.matDiany}, #{item.matStandard}, #{item.matDanw}, cast(#{item.matSl,jdbcType=DECIMAL} as decimal(18,3)),#{item.matRemark}, #{item.quotId}, #{item.index})
|
||||||
</foreach>
|
</foreach>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue