init(): 跟踪逻辑代码初始化

This commit is contained in:
Allenxy
2025-08-19 14:56:23 +08:00
parent 43eeef8089
commit e314b0fa45
116 changed files with 7207 additions and 695 deletions

View File

@@ -0,0 +1,51 @@
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;
}