@ -2691,7 +2691,8 @@ public class WmsEnumUtil {
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum SRC_STATUS {
ZMMES("ZMMES", "知明MES"),
TBMES("TBMES", "MES接口");
TBMES("TBMES", "MES接口"),
AMP("AMP","AMP系统");
private String value;
private String description;
@ -109,4 +109,12 @@ public class AmpJisRec extends BaseBean{
@ApiParam("ERP同步标识 ERP同步标识:10=待同步,20=同步成功,30=同步失败" )
public Integer erpSyncFlag;
public AmpJisRec(Long id,String partNo, String partNameRdd,String vendorNo,Double qty,String unit){
this.id= id;
this.partNo = partNo;
this.partNameRdd = partNameRdd;
this.vendorNo = vendorNo;
this.qty = qty;
this.unit = unit;
}