| | |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import java.time.LocalDate; |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | @Schema(description = "MES任务完成数据") |
| | | @Schema(description = "MES任务完成推送数据") |
| | | public class MesTaskFinishVO { |
| | | @Schema(description = "工序唯一码") |
| | | private String operationId; |
| | | @Schema(description = "检验反馈时间") |
| | | private Date checkTime; |
| | | @Schema(description = "过程卡号") |
| | | private String processCard; |
| | | |
| | | @Schema(description = "批次号") |
| | | private Long batchId; |
| | | private Date acruslEndEime; |
| | | @Schema(description = "检验员") |
| | | private String inspector; |
| | | @Schema(description = "MES任务唯一标识") |
| | | private String mesTaskId; |
| | | @Schema(description = "过程卡号") |
| | | private String processCard; |
| | | @Schema(description = "计划数量") |
| | | private Integer planQty; |
| | | @Schema(description = "合格数量") |
| | | private Integer qualifiedQty; |
| | | |
| | | @Schema(description = "操作者") |
| | | private String operator; |
| | | @Schema(description = "操作者") |
| | | private String operationFeedbackTime; |
| | | |
| | | } |