package com.zy.asrs.entity.mes; import com.alibaba.fastjson.annotation.JSONField; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import lombok.EqualsAndHashCode; import java.util.List; // 到站完成 //@EqualsAndHashCode(callSuper = true) @Data public class TransArrivalStation { // 任务编号 @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; // 到站类型,06:装配领料,07:装配入库,08:装配转序 @JsonProperty("Daotype") @JSONField(name = "Daotype") private String Daotype; // 托盘条码 @JsonProperty("TuoPanId") @JSONField(name = "TuoPanId") private String TuoPanId; // AGV编码 @JsonProperty("AgvCode") @JSONField(name = "AgvCode") private String AgvCode; // 物料编码 @JsonProperty("Itemno") @JSONField(name = "Itemno") private String Itemno; // 零件码 @JsonProperty("ItemBarcode") @JSONField(name = "ItemBarcode") private List ItemBarcode; }