生产领料优化

yun-zuoyi
Silliter 6 years ago
parent a1ceda9f16
commit b55906ced0

@ -1838,5 +1838,36 @@ public class WmsEnumUtil {
}
}
/**
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum OPTION_TYPE {
OPTIONS(10, "OPTIONS", "可选项"),
BUTTON(20, "BUTTON", "按钮");
private String code;
private String description;
int value;
OPTION_TYPE(int value, String code, String description) {
this.value = value;
this.code = code;
this.description = description;
}
public int getValue() {
return value;
}
public String getCode() {
return code;
}
public String getDescription() {
return description;
}
}
}

@ -17,4 +17,15 @@ public class OptionModel {
private String name;
private Integer value;
/**
* 10=20=
*/
private Integer type;
/**
* Type=20
* OperationBean. barcode使
*/
private String content;
}

@ -73,5 +73,13 @@ public class WmsActionGroupDetails extends BaseBean {
@ApiParam(value = "流程名称")
private String agName;
@Column(name = "GOTO_BTN_CODE")
@ApiParam(value = "跳转按钮代码")
private String goToBtnCode;
@Column(name = "GOTO_BTN_NAME")
@ApiParam(value = "跳转按钮名称")
private String goToBtnName;
}

@ -101,6 +101,14 @@ public class WmsActionLogDetails extends BaseBean {
@ApiParam(value = "结束执行时间")
public String endTime;
@Column(name = "GOTO_BTN_CODE")
@ApiParam(value = "跳转按钮代码")
private String goToBtnCode;
@Column(name = "GOTO_BTN_NAME")
@ApiParam(value = "跳转按钮名称")
private String goToBtnName;
public WmsActionLogDetails() {
}

@ -122,4 +122,10 @@ public class WmsMoveDetails extends BaseBean {
this.waitingCounts = waitingCounts;
this.finishedCounts = finishedCounts;
}
public WmsMoveDetails(String partNo, double qty ,double transQty){
this.partNo = partNo;
this.qty = qty;
this.transQty = transQty;
}
}

Loading…
Cancel
Save