package org.springblade.mdm.thirdpart.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
@Data
|
@Schema(description = "MES任务计划")
|
public class MesTaskVO {
|
@Schema(description = "工单号")
|
private String orderNumber;
|
@Schema(description = "图号")
|
private String drawingCode;
|
@Schema(description = "图纸版次")
|
private String drawingVersion;
|
@Schema(description = "产品型号")
|
private String productModel;
|
@Schema(description = "工序号")
|
private String operationCode;
|
@Schema(description = "工序名称")
|
private String operationName;
|
@Schema(description = "工序版次")
|
private String operationVersion;
|
|
@Schema(description = "工艺版次")
|
private String routingVersion;
|
|
@Schema(description = "工序唯一码")
|
private String operationId;
|
|
@Schema(description = "设备编号")
|
private String equipmentCode;
|
|
@Schema(description = "设备型号")
|
private String equipmentModel;
|
@Schema(description = "派工人(手动派工才)")
|
private String dspatchBy;
|
|
@Schema(description = "计划开工时间")
|
private String planStartTime;
|
|
@Schema(description = "临时更改单号")
|
private String dviateCode;
|
|
}
|