yangys
2025-09-18 0d61b9bfca526e9c3da2209de8f9f367e76fd013
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package org.springblade.mdm.statreport.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.Date;
 
@Data
@Schema(description = "新编程序统计")
public class NewProgrammingVO {
    @Schema(description = "流程实例id")
    private String processInstanceId;
    @Schema(description = "零组件号")
    private String drawingNo;
    @Schema(description = "图号版次/设计版次")
    private String drawingNoEdition;
    @Schema(description = "工序号")
    private String processNo;
    @Schema(description = "工序名称")
    private String processName;
    @Schema(description = "产品型号")
    private String productModel;
    @Schema(description = "工序版次")
    private String processEdition;
 
    @Schema(description = "工艺版次")
    private String craftEdition;
 
    @Schema(description = "设备编号")
    private String machineCode;
    @Schema(description = "编制人员姓名")
    private String actProgrammerName;
    @Schema(description = "校对人员姓名")
    private String actCheckerName;
    @Schema(description = "审核人员姓名")
    private String actSeniorName;
    @Schema(description = "审核结束时间")
    private Date endTime;
}