52 lines
1.4 KiB
Java
52 lines
1.4 KiB
Java
package com.fizz.business.dto;
|
||
|
||
import com.fizz.business.domain.PdoExcoil;
|
||
import io.swagger.v3.oas.annotations.media.Schema;
|
||
import lombok.Getter;
|
||
import lombok.Setter;
|
||
|
||
import java.io.Serializable;
|
||
import java.util.List;
|
||
|
||
/**
|
||
* 产出数据
|
||
*
|
||
* @author chenhao
|
||
* @date 2023/7/26
|
||
*/
|
||
@Getter
|
||
@Setter
|
||
public class PdoExCoilDTO extends PdoExcoil implements Serializable {
|
||
|
||
@Schema(description = "机组号")
|
||
private String unitCode;
|
||
@Schema(description = "工序号")
|
||
private String processCode;
|
||
@Schema(description = "是否尾卷")
|
||
private boolean lastFlag;
|
||
@Schema(description = "是否分卷")
|
||
private boolean separateFlag;
|
||
@Schema(description = "是否并卷")
|
||
private boolean mergeFlag;
|
||
@Schema(description = "并卷数")
|
||
private int mergeNum;
|
||
@Schema(description = "计划来源:L3-L3计划,MANUAL-人工")
|
||
private String planOrigin;
|
||
@Schema(description = "并卷数据")
|
||
private List<PdoExCoilSubDTO> subCoilList;
|
||
@Schema(description = "子计划数据")
|
||
private List<PdiPlanSubDTO> subPlanList;
|
||
|
||
@Schema(description = "是否实验卷")
|
||
private String isExperiment;
|
||
|
||
@Schema(description = "实验种类")
|
||
private String experimentType;
|
||
|
||
@Schema(description = "工艺规程id")
|
||
private Long setupId;
|
||
|
||
@Schema(description = "工艺规程名称")
|
||
private String setupName;
|
||
}
|