PO字段新增

yun-zuoyi
陈思洁 6 years ago
parent 854cb4e106
commit 767758f7a2

@ -9,10 +9,7 @@ import org.hibernate.annotations.ColumnDefault;
import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Index;
import javax.persistence.Table;
import javax.persistence.*;
/**
* @Description : PO
@ -90,4 +87,32 @@ public class WmsPoSn extends BaseBean {
@ColumnDefault("0")
@ApiParam(value = "收货数量", example = "0")
public Double recQty;
@ApiParam(value = "供应商名称")
@Transient
public String vendorNameRdd;
@ApiParam(value = "项目名称")
@Transient
public String prodCfgTypeName;
@ApiParam(value = "标签编号")
@Transient
public String labelNo;
@ApiParam(value = "送货批号")
@Transient
public String lotNo;
@Transient
@ApiParam(value = "生产日期")
public String dateCode;
@Transient
@ApiParam(value = "订单号")
public String refSrc;
@Transient
@ApiParam(value = "条码")
public String sn;
}

@ -188,6 +188,14 @@ public class WmsStockSn extends BaseBean {
@Transient
public Boolean isAdd;
@ApiParam(value = "项目名称")
@Transient
public String prodCfgTypeName;
@ApiParam(value = "标签编号")
@Transient
public String labelNo;
public WmsStockSn(){}
public WmsStockSn(String partNo){

Loading…
Cancel
Save