|
|
|
@ -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;
|
|
|
|
|
}
|
|
|
|
|