|
|
|
@ -71,6 +71,8 @@ public class QueueOrderModel implements Serializable {
|
|
|
|
|
|
|
|
|
|
@ApiParam("队列编号")
|
|
|
|
|
private String orderNo;
|
|
|
|
|
@ApiParam("料架是否已打印")
|
|
|
|
|
private Integer isGroupPrinted;
|
|
|
|
|
|
|
|
|
|
public QueueOrderModel() {
|
|
|
|
|
}
|
|
|
|
@ -155,13 +157,14 @@ public class QueueOrderModel implements Serializable {
|
|
|
|
|
this.orderNo = orderNo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public QueueOrderModel(Long id, Double queDetailSeq, String pgCode, String queueGroupNo, Integer groupNo, String prodCfgCode) {
|
|
|
|
|
public QueueOrderModel(Long id, Double queDetailSeq, String pgCode, String queueGroupNo, Integer groupNo, String prodCfgCode, Integer isGroupPrinted) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.queDetailSeq = queDetailSeq;
|
|
|
|
|
this.pgCode = pgCode;
|
|
|
|
|
this.queueGroupNo = queueGroupNo;
|
|
|
|
|
this.groupNo = groupNo;
|
|
|
|
|
this.prodCfgCode = prodCfgCode;
|
|
|
|
|
this.isGroupPrinted = isGroupPrinted;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public QueueOrderModel(String orderNo, Long id, Double queueSeq, Double queDetailSeq, String custFlagNo, String prodCfgNameRdd, String categoryNameRdd,
|
|
|
|
|