package com.zy.asrs.entity.mes;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
@Data
|
public class MesParent {
|
|
// 任务编号
|
@JsonProperty("taskno")
|
@JSONField(name = "taskno")
|
private String taskno;
|
// 任务名称
|
@JsonProperty("taskname")
|
@JSONField(name = "taskname")
|
private String taskname;
|
// 生产订单号
|
@JsonProperty("OrderNo")
|
@JSONField(name = "OrderNo")
|
private String OrderNo;
|
// 生产线编码
|
@JsonProperty("ProductLineId")
|
@JSONField(name = "ProductLineId")
|
private String ProductLineId;
|
// 工位编码
|
@JsonProperty("StationId")
|
@JSONField(name = "StationId")
|
private String StationId;
|
// // 零件编码
|
// @JsonProperty("Itemno")
|
// @JSONField(name = "Itemno")
|
// private String Itemno;
|
// // 数量,托盘零件数量
|
// @JsonProperty("Qty")
|
// @JSONField(name = "Qty")
|
// private Float Qty;
|
|
}
|