修改展示组件逻辑

yun-zuoyi
宋军超 5 years ago
parent 88233f080a
commit 394a332de2

@ -40,9 +40,9 @@ public class MesBoardDisplay extends BaseBean implements Serializable {
@Column(name = "IS_ROLL") @Column(name = "IS_ROLL")
@ApiParam("是否滚动") @ApiParam("是否滚动")
private String isRoll; private Integer isRoll;
@Column(name = "ROLL_SPEED") @Column(name = "ROLL_SPEED")
@ApiParam("滚动速度") @ApiParam("滚动速度")
private String rollSpeed; private Integer rollSpeed;
} }

@ -81,6 +81,9 @@ public class ProductInfoManageModel {
@ApiParam("明细队列序列") @ApiParam("明细队列序列")
private Double queDetailSeq; private Double queDetailSeq;
@ApiParam("主队列编号")
private String orderNo;
@ApiParam("总队列类型") @ApiParam("总队列类型")
private List<Integer> queueTypeList; private List<Integer> queueTypeList;
@ -97,4 +100,13 @@ public class ProductInfoManageModel {
this.produceColor = produceColor; this.produceColor = produceColor;
this.queDetailSeq = queDetailSeq; this.queDetailSeq = queDetailSeq;
} }
public ProductInfoManageModel(String vinCode, String produceCategoryCode, String orderNo, Double queDetailSeq, Double queueSeq, String workType) {
this.vinCode = vinCode;
this.produceCategoryCode = produceCategoryCode;
this.orderNo = orderNo;
this.queDetailSeq = queDetailSeq;
this.queueSeq = queueSeq;
this.workType = workType;
}
} }

Loading…
Cancel
Save