Files
be-process-control-system/business/src/main/java/com/fizz/business/dto/PdoExCoilDTO.java
2025-08-19 14:56:23 +08:00

52 lines
1.4 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}