|
|
|
@ -39,9 +39,9 @@ public class MesQueueOrderDetail extends BaseBean {
|
|
|
|
|
@ApiParam("产品条码")
|
|
|
|
|
private String serialNumber;
|
|
|
|
|
|
|
|
|
|
@Column(name="DETAIL_SEQ")
|
|
|
|
|
@Column(name="SEQ")
|
|
|
|
|
@ApiParam("队列明细序号")
|
|
|
|
|
private Double detailSeq;
|
|
|
|
|
private Double seq;
|
|
|
|
|
|
|
|
|
|
@Column(name="QTY")
|
|
|
|
|
@ApiParam("数量")
|
|
|
|
@ -59,8 +59,8 @@ public class MesQueueOrderDetail extends BaseBean {
|
|
|
|
|
@ApiParam("产品类型")
|
|
|
|
|
private String produceCategory;
|
|
|
|
|
|
|
|
|
|
public double getDetailSeqVal() {
|
|
|
|
|
return this.detailSeq == null ? 0.0d : this.detailSeq;
|
|
|
|
|
public double getSeqVal() {
|
|
|
|
|
return this.seq == null ? 0.0d : this.seq;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public double getQtyVal() {
|
|
|
|
|