yun-zuoyi
廖湘明 4 years ago
commit 860a995022

@ -89,8 +89,9 @@ public class AndonEnumUtil {
QUALITY_ALARM_CALL("QUALITY_ALARM_CALL", "质量呼叫弹框界面"),
PART_ALARM_CALL("PART_ALARM_CALL", "物料呼叫弹框界面"),
ROUTING_ALARM_CALL("ROUTING_ALARM_CALL", "工艺呼叫弹框界面"),
OTHER_ALARM_CALL("OTHER_ALARM_CALL", "自处理呼叫弹框界面"),
OTHER_ALARM_CALL("OTHER_ALARM_CALL", "工装呼叫弹框界面"),
FIX_ERROR_CALL("FIX_ERROR_CALL", "自动报警呼叫弹框界面"),
MODULE_ALARM_CALL("MODULE_ALARM_CALL", "模具呼叫弹框界面"),
ALARM_SIGN("ALARM_SIGN", "响应弹框界面"),
ALARM_CANCEL("ALARM_CANCEL", "撤销二次提醒框"),
ALARM_RESOLVE("ALARM_RESOLVE", "解决弹框界面");
@ -1218,7 +1219,8 @@ public class AndonEnumUtil {
PART("PART_ALARM", 110060104, "物料", "#24BDBA"),
PROCESS("ROUTING_ALARM", 110060107, "工艺", "#2B97F9"),
CHECK("OTHER_ALARM", 110060108, "工装", "#EAA510"),
FIX_ERROR("FIX_ERROR", 110060109, "自动报警", "#797B7F");
FIX_ERROR("FIX_ERROR", 110060109, "自动报警", "#797B7F"),
MOULD("MOULD_ALARM", 160060111, "模具", "#0A8BEE");
private String value;
private Integer code;

@ -2813,6 +2813,15 @@ public class MesEnumUtil {
}
return tmp;
}
public static MES_QC_CHECK_TYPE getByValue(int value) {
for (MES_QC_CHECK_TYPE type : values()) {
if (type.getValue() == value) {
return type;
}
}
return null;
}
}
/**
@ -7705,6 +7714,15 @@ public class MesEnumUtil {
}
return tmp;
}
public static QC_CHECK_DATA_SOURCE getByValue(int value) {
for (QC_CHECK_DATA_SOURCE type : values()) {
if (type.getValue() == value) {
return type;
}
}
return null;
}
}
/**
@ -8179,4 +8197,50 @@ public class MesEnumUtil {
}
}
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum PRODUCT_PROCESS_CHECK_RESULT_TYPE {
YELLOW(5, "进行中"),
GREEN(10, "合格"),
RED(20, "不合格");
private int value;
private String description;
PRODUCT_PROCESS_CHECK_RESULT_TYPE(int value, String description) {
this.value = value;
this.description = description;
}
public int getValue() {
return value;
}
public String getValueStr() {
return value + "";
}
public String getDescription() {
return description;
}
public static MesEnumUtil.PRODUCT_PROCESS_CHECK_RESULT_TYPE getByValue(Integer value) {
for (MesEnumUtil.PRODUCT_PROCESS_CHECK_RESULT_TYPE showSupplierCode : values()) {
if (showSupplierCode.getValue() == value) {
return showSupplierCode;
}
}
return null;
}
public static String valueOfDescription(int val) {
String tmp = null;
for (int i = 0; i < values().length; i++) {
if (values()[i].value == val) {
tmp = values()[i].description;
}
}
return tmp;
}
}
}

@ -4231,6 +4231,7 @@ public class MesPcnEnumUtil {
public enum PRODUCE_ERROR_RECORD {
JUMP_PROCESS(10, "跳过工序"),
JUMP_STEP(20, "跳过工步"),
JUMP_STEP_IN_STATE(25, "跳过状态点中的工步"),
JUMP_STATE(30, "跳过状态点"),
ABNORMAL_DEDUCTION(40, "扣减异常"),
REDO_STATION(50, "工位重做"),
@ -6068,4 +6069,32 @@ public class MesPcnEnumUtil {
return tmp;
}
}
/**
* MesWorkCellJumpRecord
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum MES_WORK_CELL_JUMP_TYPE {
SERIAL_SN(10, "过程条码"),
PRODUCT_SN(20, "产品条码"),
PACK_SN(30, "包装条码"),
OTHER(40, "其他");
private int value;
private String description;
MES_WORK_CELL_JUMP_TYPE(int value, String description) {
this.value = value;
this.description = description;
}
public int getValue() {
return value;
}
public String getDescription() {
return description;
}
}
}

@ -871,7 +871,8 @@ public class WmsEnumUtil {
OTHER_OUT(740, "OTHER_OUT", "其它出库"),
COGI_BALANCE(750, "COGI_BALANCE", "COGI调账入库"),
SUPPLIER_STD_RETURN(760, "SUPPLIER_STD_RETURN", "供应商退货"),
COGI_BALANCE_OUT(770, "COGI_BALANCE", "COGI调账出库");//默认DMR
COGI_BALANCE_OUT(770, "COGI_BALANCE", "COGI调账出库"),//默认DMR
PRODUCT_IN_STOCK(780, "PRODUCT_IN_STOCK", "成品入库");//默认DMR
private int value;
private String code;
@ -9494,6 +9495,51 @@ public class WmsEnumUtil {
return valueOf(val);
}
}
/**
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum SCRAP_TYPE {
ISOLATED_SCRAP(10, "ISOLATED", "隔离报废"),
AUTO_SCRAP(20, "AUTO_SCRAP", "自动报废");
private int value;
private String code;
private String description;
SCRAP_TYPE(int value, String code, String description) {
this.value = value;
this.code = code;
this.description = description;
}
public int getValue() {
return value;
}
public String getDescription() {
return description;
}
public String getCode() {
return code;
}
public static String valueOf(int val) {
String tmp = null;
for (int i = 0; i < values().length; i++) {
if (values()[i].value == val) {
tmp = values()[i].description;
}
}
return tmp;
}
public static String valueOfDescription(int val) {
return valueOf(val);
}
}
}

@ -42,10 +42,6 @@ public class MesFurnaceLocation extends BaseBean implements Serializable {
@ApiParam("炉内位置代码")
private String fnLocationNo;
@Column(name = "MODEL_IMG_URL")
@ApiParam("模式图片路径")
private String modelImgUrl;
@Column(name = "SEQ")
@ApiParam("推荐顺序")
private Integer seq;

@ -203,6 +203,10 @@ public class MesPackage extends BaseBean implements Serializable {
@ApiParam(value = "生产线名称")
private String workCenterName;
@Transient
@ApiParam("工序名称")
private String processName;
public MesPackage() {
}

@ -60,12 +60,12 @@ public class MesPartCheck extends BaseBean implements Serializable {
@ApiParam("数据查询类型")
private Integer dataType = 1;
@Column(name = "LIMIT_TIMES")
@ApiParam("限定检测次数")
private Integer limitTimes;
@Column(name = "LIMIT_SPEL_EXPRESS")
@ApiParam("限定检测表达式")
private String limitSpelExpress;
@Column(name = "RECORD_NUM_DESC")
@ApiParam("校验表达式描述")
@ApiParam("合格标准描述")
private String recordNumDesc;
@Transient

@ -40,4 +40,8 @@ public class MesPartFurnace extends BaseBean implements Serializable {
@Column(name = "PART_NO")
@ApiParam("物料编码")
private String partNo;
@Column(name = "MODEL_IMG_URL")
@ApiParam("模式图片路径")
private String modelImgUrl;
}

@ -22,9 +22,6 @@ public class DataReviewModel {
@ApiParam("实际数量")
private String realNum;
@ApiParam("限定次数")
private String limitTimes;
@ApiParam("检测次数")
private String checkTimes;

@ -25,4 +25,6 @@ public class ProductBiSeriesModel {
private List<Double> snQtyList = new ArrayList<>();
@ApiParam("计划数量集合")
private List<Double> planQtyList = new ArrayList<>();
@ApiParam("零件号")
private String partNo;
}

@ -0,0 +1,39 @@
package cn.estsh.i3plus.pojo.mes.model;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.Data;
/**
* @Description :
* @Reference :
* @Author : dominic
* @CreateDate : 2020-12-24 16:35
* @Modify:
**/
@Data
@Api("报废率趋势查询条件封装类")
public class ScrapRateTrendQueryModel {
@ApiParam("组织机构代码")
private String organizeCode;
@ApiParam("工序代码")
private String processCode;
@ApiParam("开始时间")
private String startTime;
@ApiParam("结束时间")
private String endTime;
@ApiParam("时间类型")
private String timeType;
@ApiParam("项目号")
private String prodCfgTypeCode;
@ApiParam("物料号")
private String partNo;
}

@ -0,0 +1,20 @@
package cn.estsh.i3plus.pojo.mes.model;
import io.swagger.annotations.ApiParam;
import lombok.Data;
/**
* @Description :
* @Reference :
* @Author : dominic
* @CreateDate : 2020/12/28 10:10
* @Modify:
**/
@Data
public class TimeCountModel {
@ApiParam("时间段")
private String time;
@ApiParam("计数")
private Integer count;
}

@ -0,0 +1,20 @@
package cn.estsh.i3plus.pojo.mes.model;
import io.swagger.annotations.ApiParam;
import lombok.Data;
/**
* @Description :
* @Reference :
* @Author : dominic
* @CreateDate : 2020/12/28 13:10
* @Modify:
**/
@Data
public class TimeRateModel {
@ApiParam("时间段")
private String time;
@ApiParam("比率")
private double rate;
}

@ -21,6 +21,9 @@ public class ProcessScrapRate {
@ApiParam("工序")
private String processCode;
@ApiParam("工序名称")
private String processName;
@ApiParam("项目号")
private String prodCfgTypeCode;
@ -31,8 +34,9 @@ public class ProcessScrapRate {
private BigDecimal scrapRate;
public ProcessScrapRate(String processCode, String prodCfgTypeCode, String workCellCode) {
public ProcessScrapRate(String processCode,String processName, String prodCfgTypeCode, String workCellCode) {
this.processCode = processCode;
this.processName = processName;
this.prodCfgTypeCode = prodCfgTypeCode;
this.workCellCode = workCellCode;
}

@ -2784,7 +2784,8 @@ public class MesHqlPack {
* @return
*/
public static DdlPackBean getMesWorkCellSkill(MesWorkCellSkill mesWorkCellSkill) {
DdlPackBean packBean = DdlPackBean.getDdlPackBean(mesWorkCellSkill.getOrganizeCode());;
DdlPackBean packBean = DdlPackBean.getDdlPackBean(mesWorkCellSkill.getOrganizeCode());
;
if (!StringUtils.isEmpty(mesWorkCellSkill.getSkillCode())) {
DdlPreparedPack.getStringLikerPack(mesWorkCellSkill.getSkillCode(), "skillCode", packBean);
}
@ -3627,11 +3628,11 @@ public class MesHqlPack {
return packBean;
}
public static DdlPackBean getMesFurnaceLocation(MesFurnaceLocation mesFurnaceLocation) {
DdlPackBean packBean = getAllBaseData(mesFurnaceLocation.getOrganizeCode());
DdlPreparedPack.getStringLikerPack(mesFurnaceLocation.getFnLocationNo(), "fnLocationNo", packBean);
DdlPreparedPack.getStringLikerPack(mesFurnaceLocation.getModelNo(), "modelNo", packBean);
DdlPreparedPack.getNumEqualPack(mesFurnaceLocation.getIsValid(), "isValid", packBean);
public static DdlPackBean getPartFurnace(MesPartFurnace partFurnace) {
DdlPackBean packBean = getAllBaseData(partFurnace.getOrganizeCode());
DdlPreparedPack.getStringLikerPack(partFurnace.getPartNo(), "partNo", packBean);
DdlPreparedPack.getStringLikerPack(partFurnace.getModelNo(), "modelNo", packBean);
DdlPreparedPack.getNumEqualPack(partFurnace.getIsValid(), "isValid", packBean);
return packBean;
}
@ -3692,10 +3693,19 @@ public class MesHqlPack {
DdlPreparedPack.getStringLikerPack(mesPackage.getWorkCenterCode(), "workCenterCode", packBean);
DdlPreparedPack.getStringLikerPack(mesPackage.getWorkOrderNo(), "workOrderNo", packBean);
DdlPreparedPack.getStringLikerPack(mesPackage.getPartNo(), "partNo", packBean);
DdlPreparedPack.getStringLikerPack(mesPackage.getPackageNo(), "packageNo", packBean);
DdlPreparedPack.getStringRightLikerPack(mesPackage.getPackageNo(), "packageNo", packBean);
DdlPreparedPack.getStringRightLikerPack(mesPackage.getCtNo(), "ctNo", packBean);
DdlPreparedPack.getStringBiggerPack(mesPackage.getCreateDateTimeStart(), "createDatetime", packBean);
DdlPreparedPack.getStringSmallerPack(mesPackage.getCreateDateTimeEnd(), "createDatetime", packBean);
return packBean;
}
public static DdlPackBean getMesProduceCtgyPicture(MesProduceCtgyPicture mesProduceCtgyPicture) {
DdlPackBean packBean = getAllBaseData(mesProduceCtgyPicture.getOrganizeCode());
DdlPreparedPack.getStringLikerPack(mesProduceCtgyPicture.getProduceCtgyCode(), "produceCtgyCode", packBean);
DdlPreparedPack.getStringLikerPack(mesProduceCtgyPicture.getDefectLocation(), "defectLocation", packBean);
DdlPreparedPack.getNumEqualPack(mesProduceCtgyPicture.getIsValid(), "isValid", packBean);
return packBean;
}
}

@ -6,8 +6,6 @@ import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import lombok.EqualsAndHashCode;
import org.hibernate.annotations.ColumnDefault;
import org.hibernate.annotations.DynamicInsert;
@ -15,6 +13,8 @@ import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.Table;
import javax.persistence.Transient;
@ -156,6 +156,19 @@ public class WmsCSFactTrans extends BaseBean {
@ApiParam("行号")
private String item;
@ApiParam("应盘人")
public String detailsCreateUser;
@ApiParam("应盘时间")
public String detailsCreateDatetime;
@ApiParam("实盘人")
public String factCreateUser;
@ApiParam("实盘时间")
public String factCreateDatetime;
public WmsCSFactTrans(){}
public Integer getIsScopeVal() {

@ -740,4 +740,22 @@ public WmsDocMovementDetails (String partNo,String orderNo) {
this.destLocateName = locateName;
}
public WmsDocMovementDetails(String organizeCode, String workOrderCode, String orderNo,Integer moveType, Integer busiType,
String item, String partNo, String partNameRdd,String unit, Double qty,
Integer isSn, Integer orderMasterStatus,String createUser, String createDatetime) {
this.organizeCode = organizeCode;
this.workOrderCode = workOrderCode;
this.orderNo = orderNo;
this.moveType = moveType;
this.busiType = busiType;
this.item = item;
this.partNo = partNo;
this.partNameRdd = partNameRdd;
this.unit = unit;
this.qty = qty;
this.isSn = isSn;
this.orderMasterStatus = orderMasterStatus;
this.createUser = createUser;
this.createDatetime = createDatetime;
}
}

@ -8,14 +8,18 @@ import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.*;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Index;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.Table;
import javax.persistence.Transient;
import java.util.List;
/**
@ -269,6 +273,17 @@ public class WmsDocMovementMaster extends BaseBean {
isRequire = 2, dataSrc = "/wms/wms-enum/dictionary/code?code=DOC_MOVEMENT_DEPARTMENT_REMARK", listColumnName = "name", explicitColumnName = "dictionaryValue")
private String fourthRemake;
/**
*
*/
@Column(name = "SCRAP_TYPE")
@ApiParam("报废类型")
@AnnoOutputColumn(refClass = WmsEnumUtil.SCRAP_TYPE.class, refForeignKey = "value", value = "description")
public Integer scrapType;
@Column(name = "IS_REMOVE_ORDER")
@ApiParam(value = "是否撤销单据")
private Integer isRemoveOrder = CommonEnumUtil.FALSE;

@ -6,8 +6,6 @@ import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import lombok.EqualsAndHashCode;
import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
@ -15,6 +13,8 @@ import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Index;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.Lob;
import javax.persistence.Table;
import javax.persistence.Transient;
@ -214,6 +214,29 @@ public class WmsMoveMaster extends BaseBean {
public WmsMoveMaster() {
}
public WmsMoveMaster(String organizeCode, String partNo, String partNameRdd, String transTypeCode,
String transTypeName, String unit, String destZoneNo, Double transQty, Double handledQty, Double rejectQty,
Integer busiTypeCode, String createDatetime, String createUser, String modifyUser,
String modifyDatetime, String refSrc) {
this.organizeCode = organizeCode;
this.partNo = partNo;
this.partNameRdd = partNameRdd;
this.transTypeCode = transTypeCode;
this.transTypeName = transTypeName;
this.unit = unit;
this.destZoneNo = destZoneNo;
this.transQty = transQty;
this.handledQty = handledQty;
this.rejectQty = rejectQty;
this.busiTypeCode = busiTypeCode;
this.createDatetime = createDatetime;
this.createUser = createUser;
this.modifyUser = modifyUser;
this.modifyDatetime = modifyDatetime;
this.refSrc = refSrc;
}
public WmsMoveMaster(String orderNo, Integer orderStatus, String transTypeCode, String errorMessage,
Integer isUrgent, String carNo, Integer busiTypeCode, String refOrderNo, String refSrc, String partNo, Integer itemStatus, String remark,
String organizeCode, String createDatetime, String createUser, String modifyDatetime, String modifyUser, String fixId,

@ -366,12 +366,13 @@ public class WmsPart extends BaseBean {
this.partSpec = partSpec;
}
public WmsPart(String partNo, String partName, String partSpec, Double snp, String buyUnit, Integer snControl, Double qty) {
public WmsPart(String partNo, String partName, String partSpec, Double snp, String buyUnit, String stockUnit, Integer snControl, Double qty) {
this.partNo = partNo;
this.partName = partName;
this.partSpec = partSpec;
this.snp = snp;
this.buyUnit = buyUnit;
this.stockUnit = stockUnit;
this.snControl = snControl;
this.qty = qty;
}

@ -6,8 +6,6 @@ import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import lombok.EqualsAndHashCode;
import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
@ -15,6 +13,8 @@ import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Index;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.Table;
/**
@ -96,6 +96,9 @@ public class WmsPartExtend extends BaseBean {
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.TEXT)
private String lotControl;
/**
*
*/
@Column(name = "RANGE_LOT")
@ApiParam(value = "批次容差")
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.NUMBER)

@ -6,16 +6,11 @@ import cn.estsh.i3plus.pojo.wms.dto.WmsTmsShipModel;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import lombok.EqualsAndHashCode;
import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Transient;
import javax.persistence.*;
import java.util.List;
/**
@ -137,6 +132,11 @@ public class WmsTmsShippingExt extends BaseBean {
@ApiParam("调拨单录入字段")
private String defectiveAllocation;
//关联单号
@Column(name="ORDER_NO")
@ApiParam("关联单号")
private String orderNo;
// @Transient
// @ApiParam("打印模板列表")
// private String defectiveAllocation;

@ -0,0 +1,166 @@
package cn.estsh.i3plus.pojo.wms.modelbean;
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
import cn.estsh.i3plus.pojo.wms.bean.WmsMoveSn;
import cn.estsh.i3plus.pojo.wms.bean.WmsStockSn;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import java.util.List;
/**
* @Description : GCDCmodel
* @Reference :
* @Author : jimmy.zeng
* @CreateDate : 2020-11-24 18:17
* @Modify:
**/
@Data
@Api("GCDC集装箱model")
public class WmsGcdcContainerModel extends BaseBean {
@ApiParam("移库单号号")
public String orderNo;
@ApiParam("库存移动单号")
public String moveNo;
@ApiParam("条码")
public String sn;
@ApiParam(value = "ERP单号")
private String erpSrcNo;
@ApiParam(value = "客户编号")
private String custNo;
@ApiParam(value = "单据状态")
public Integer orderStatus;
@ApiParam(value = "库存移动单状态")
public Integer itemStatus;
@ApiParam(value = "包装编号")
private String packageNo;
@ApiParam("集装箱号")
private String containerNo;
@ApiParam("产地")
private String productPlace;
@ApiParam("托盘重量")
private Double packageWeight;
@ApiParam(value = "客户名称")
public String custNameRdd;
@ApiParam(value = "业务类型")
public Integer busiType;
@ApiParam(value = "交易类型代码")
private String transTypeCode;
@ApiParam(value = "物料号")
public String partNo;
@ApiParam(value = "物料号")
public String partNameRdd;
@ApiParam(value = "客户地址")
private String custAddr;
@ApiParam(value = "客户联系人")
private String custOwner;
@ApiParam(value = "客户电话号码")
private String custTel;
@ApiParam(value = "是否集装箱号")
private Integer isContainer;
@ApiParam("移库单号集合")
private List<String> orderNoList;
@ApiParam("库存移动单号集合")
private List<String> moveNoList;
@ApiParam("库存移动单条码集合")
private List<WmsMoveSn> moveSnList;
@ApiParam("库存条码集合")
private List<WmsStockSn> stockSnList;
@ApiParam(value = "仓库代码")
private String whNo;
@ApiParam(value = "存储区编号")
private String zoneNo;
@ApiParam(value = "库位代码")
private String locateNo;
@ApiParam(value = "客户发往地名称")
private String flagName;
@ApiParam(value = "客户发往地代码")
private String flagNo;
@ApiParam(value = "是否绑定发运")
private Integer isBindingShip = WmsEnumUtil.TRUE_OR_FALSE.FALSE.getValue();
public WmsGcdcContainerModel() {
}
public WmsGcdcContainerModel(Long id, String orderNo, String moveNo, String erpSrcNo, String custNo,
Integer orderStatus, String createDatetime, String createUser) {
this.id = id;
this.orderNo = orderNo;
this.moveNo = moveNo;
this.erpSrcNo = erpSrcNo;
this.custNo = custNo;
this.orderStatus = orderStatus;
this.createDatetime = createDatetime;
this.createUser = createUser;
}
public WmsGcdcContainerModel(Long id, String orderNo, String moveNo, String erpSrcNo, String custNo,
Integer itemStatus, String createDatetime, String createUser, Integer busiType) {
this.id = id;
this.orderNo = orderNo;
this.moveNo = moveNo;
this.erpSrcNo = erpSrcNo;
this.custNo = custNo;
this.itemStatus = itemStatus;
this.createDatetime = createDatetime;
this.createUser = createUser;
this.busiType = busiType;
}
public WmsGcdcContainerModel(Long id, String orderNo, String packageNo, Double packageWeight, String custNo, String partNo, String flagNo) {
this.id = id;
this.orderNo = orderNo;
this.packageNo = packageNo;
this.packageWeight = packageWeight;
this.custNo = custNo;
this.partNo = partNo;
this.flagNo = flagNo;
}
public WmsGcdcContainerModel(Long id, String organizeCode, Double packageWeight, String packageNo, String zoneNo,
String locateNo, String whNo, String partNo, String partNameRdd, String custNo, String flagNo) {
this.id = id;
this.organizeCode = organizeCode;
this.packageWeight = packageWeight;
this.packageNo = packageNo;
this.zoneNo = zoneNo;
this.locateNo = locateNo;
this.whNo = whNo;
this.partNo = partNo;
this.partNameRdd = partNameRdd;
this.custNo = custNo;
this.flagNo = flagNo;
}
}

@ -6,7 +6,7 @@ sonar.projectKey=i3plus.pojo:i3plus-pojo
# defaults to project key
sonar.projectName=i3plus-pojo
# defaults to 'not provided'
sonar.projectVersion=1.0-DEV-SNAPSHOT
sonar.projectVersion=1.0-TEST-SNAPSHOT
# Path is relative to the sonar-project.properties file. Defaults to .
#sonar.sources=./

Loading…
Cancel
Save