广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-12 5740eb93928f3cb8e17c3fa5f082f42072ebbc31
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package org.dromara.qa.qm.domain.vo;
 
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.dromara.qa.qm.domain.QmStd;
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
import cn.idev.excel.annotation.ExcelProperty;
import org.dromara.common.excel.annotation.ExcelDictFormat;
import org.dromara.common.excel.convert.ExcelDictConvert;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
 
 
 
/**
 * 判定规程视图对象 qm_std
 *
 * @author zhuguifei
 * @date 2026-03-11
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = QmStd.class)
public class QmStdVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 编码
     */
    @ExcelProperty(value = "编码")
    private String id;
 
    /**
     * 规程代码
     */
    @ExcelProperty(value = "规程代码")
    private String stdCode;
 
    /**
     * 规程名称
     */
    @ExcelProperty(value = "规程名称")
    private String stdName;
 
    /**
     * 创建时间
     */
    @ExcelProperty(value = "创建时间")
    private Date cdate;
 
    /**
     * 版本号
     */
    @ExcelProperty(value = "版本号")
    private Long ver;
 
    /**
     * 启用标识
     */
    @ExcelProperty(value = "启用标识")
    private Long enable;
 
    /**
     * 检验项目code
     */
    @ExcelProperty(value = "检验项目code")
    private String itemCod;
 
    /**
     * 检验项目名称
     */
    @ExcelProperty(value = "检验项目名称")
    private String itemNam;
 
    /**
     * 判定类型  0-手动判定,1-上下限判定,2-平均值判定,3-SD值判定,4-CV值判定,5-超标数判定
     */
    @ExcelProperty(value = "判定类型  0-手动判定,1-上下限判定,2-平均值判定,3-SD值判定,4-CV值判定,5-超标数判定")
    private Long typ;
 
    /**
     * 备注
     */
    @ExcelProperty(value = "备注")
    private String stdDes;
 
    /**
     * 检验级别
     */
    @ExcelProperty(value = "检验级别")
    private Long checkLevel;
 
    /**
     * 类型  : 0-成品  1-辅料
     */
    @ExcelProperty(value = "类型  : 0-成品  1-辅料")
    private Long category;
 
    /**
     * $column.columnComment
     */
    @ExcelProperty(value = "${comment}", converter = ExcelDictConvert.class)
    @ExcelDictFormat(readConverterExp = "$column.readConverterExp()")
    private String matfltype;
 
    /**
     * $column.columnComment
     */
    @ExcelProperty(value = "${comment}", converter = ExcelDictConvert.class)
    @ExcelDictFormat(readConverterExp = "$column.readConverterExp()")
    private String matflname;
 
 
}