垛型增加

master
shaoyong 5 months ago
parent 99c3e0e3e7
commit 4bae9ca274

@ -355,6 +355,15 @@ public class BaseProduct extends BaseEntity {
private String mvgr5;
private String palletNum;
private String warehouseCycle;
private String packType;
public String getPackType() {
return packType;
}
public void setPackType(String packType) {
this.packType = packType;
}
public String getMvgr5() {
return mvgr5;

@ -124,6 +124,15 @@ public class BaseProductAttached extends BaseEntity {
private String other;
private String warehouseCycle;
private String palletNum;
private String packType;
public String getPackType() {
return packType;
}
public void setPackType(String packType) {
this.packType = packType;
}
public String getPalletNum() {
return palletNum;

@ -88,6 +88,7 @@
man_standar,
warehouse_cycle,
pallet_num,
<if test="packType != null">pack_type,</if>
<if test="sprayWay != null">spray_way,</if>
<if test="blankDiameter != null">blank_diameter,</if>
<if test="blankNo != null">blank_no,</if>
@ -110,6 +111,7 @@
#{manStandar},
#{warehouseCycle},
#{palletNum},
<if test="packType != null">#{packType},</if>
<if test="sprayWay != null">#{sprayWay},</if>
<if test="blankDiameter != null">#{blankDiameter},</if>
<if test="blankNo != null">#{blankNo},</if>
@ -155,7 +157,8 @@
iei = #{iei},
man_standar = #{manStandar},
warehouse_cycle = #{warehouseCycle},
pallet_num = #{palletNum}
pallet_num = #{palletNum},
pack_type = #{packType}
where id = #{id}
</update>

@ -68,7 +68,7 @@
<result property="mvgr5Nm" column="mvgr5_nm"/>
<result property="palletNum" column="palletNum"/>
<result property="warehouseCycle" column="warehouse_cycle"/>
<result property="packType" column="pack_type"/>
<!--附属属性-->
<result property="id" column="id"/>
</resultMap>
@ -185,7 +185,8 @@
bpa.support_no,
bpa.pvc,
bpa.support_plate,
bpa.other,bpa.warehouse_cycle,bpa.pallet_num palletNum
bpa.other,bpa.warehouse_cycle,bpa.pallet_num palletNum,
bpa.pack_type
from base_product bp
left join base_product_attached bpa on bpa.product_code = right(bp.product_code,11)
where product_id = #{productId}

Loading…
Cancel
Save