yun-zuoyi
许心洁 5 years ago
commit c04895784a

@ -0,0 +1,26 @@
package cn.estsh.i3plus.pojo.mes.model;
import cn.estsh.i3plus.pojo.mes.bean.MesShiftRest;
import io.swagger.annotations.ApiParam;
import lombok.Data;
/**
* @Description:
* @Reference:
* @Author: wangjie
* @CreateDate: 2019\10\24 22:04
* @Modify:
**/
@Data
public class MesShiftRestModel extends MesShiftRest {
@ApiParam("开始时间")
private String startDate;
@ApiParam("结束时间")
private String endDate;
@ApiParam("实际时间差(毫秒)")
private Long subTimes;
}

@ -215,6 +215,23 @@ public class WmsPOMaster extends BaseBean {
@ApiParam(value = "原因", example = "1")
public String reason;
@Column(name = "RECEIVE_DATE")
@ApiParam(value = "收货日期")
public String receiveDate;
@Column(name = "RECEIVE_TIME")
@ApiParam(value = "收货时间")
public String receiveTime;
@Column(name = "WINDOW_START_TIME")
@ApiParam(value = "窗口开始时间")
public String windowStartTime;
@Column(name = "WINDOW_END_TIME")
@ApiParam(value = "窗口结束时间")
public String windowEndTime;
@Transient
@ApiParam("周总数")
private Integer weekRcCount;
@ -227,6 +244,18 @@ public class WmsPOMaster extends BaseBean {
@ApiParam("当前状态")
private String nowStatus;
@ApiParam(value = "延迟次数")
private Long delayCount;
@ApiParam(value = "延迟次数")
private Long sumDelayCount;
@ApiParam("计划交货时间")
private String planPlanDateTime;
public WmsPOMaster() {
@ -264,6 +293,23 @@ public class WmsPOMaster extends BaseBean {
this.delayHour = delayHour;
}
public WmsPOMaster(String vendorNo, Long delayCount) {
this.vendorNo = vendorNo;
this.delayCount = delayCount;
}
public WmsPOMaster(String orderNo, String reason, String planDate, String planTime,
String receiveTime, String vendorNo, String vendorName, String organizeCode) {
this.orderNo = orderNo;
this.reason = reason;
this.planDate = planDate;
this.planTime = planTime;
this.receiveTime = receiveTime;
this.vendorNo = vendorNo;
this.vendorName = vendorName;
this.organizeCode = organizeCode;
}
public int getPoStatusVal() {
return this.poStatus == null ? 0 : this.poStatus;
}

@ -124,6 +124,17 @@ public class WmsInterfaceDataMapper extends BaseBean {
public Integer syncFrequency;
/**
* CRON
*/
@Column(name = "SYNC_CRON")
public String syncCron;
/**
* syncCron 使
*/
@Column(name = "NEXT_SYNC_TIME")
public String nextSyncTime;
/**
*
*/
@Column(name = "LAST_SYNC_TIME")

Loading…
Cancel
Save