YYC
2025-09-24 715af00851145d97afa322c211dcc44f78238ef1
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
package com.fzzy.async.fzzy35.entity;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import javax.persistence.*;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 质量巡检--粮食在仓检测
 * 
 * @author chen
 *
 */
@Data
@Entity
@Table(name = "D_M_QUALITY")
public class Fz35Quality implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Id
    @Column(name = "ID_", length = 40)
    @PropertyDef(label = "主键ID", description = "ZJ+检验类别+年月日时分秒")
    private String id;
 
    @Column(name = "COMPANY_ID_", length = 10)
    @PropertyDef(label = "组织编码")
    private String companyId;
 
    @Column(name = "DEPT_ID_", length = 40)
    @PropertyDef(label = "库区编码")
    private String deptId;
 
    @Column(name = "DEPOT_ID_", length = 50)
    @PropertyDef(label = "仓库编码")
    private String depotId;
 
    @Column(name = "FOOD_VARIETY_", length = 10)
    @PropertyDef(label = "粮食品种")
    private String foodVariety;
 
    @Column(name = "FOOD_LEVEL_", length = 10)
    @PropertyDef(label = "粮食等级")
    private String foodLevel;
 
    @Column(name = "FOOD_TYPE_", length = 10)
    @PropertyDef(label = "粮食性质")
    private String foodType;
 
    @Column(name = "FOOD_LOCATION_", length = 30)
    @PropertyDef(label = "粮食产地")
    private String foodLocation;
 
    @Column(name = "TYPE_", length = 10)
    @PropertyDef(label = "检验类别", description = "如入库验收、储藏检验、日常巡检等")
    private String type;
 
    @Column(name = "STANDARD_", length = 10)
    @PropertyDef(label = "检验依据", description = "01-国标,02-其他")
    private String standard;
 
    @Column(name = "USER_", length = 50)
    @PropertyDef(label = "检验单位或检验人")
    private String user;
 
    @Column(name = "TIME_")
    @PropertyDef(label = "检验时间")
    private Date time;
 
    @Column(name = "RESULT_", length = 50)
    @PropertyDef(label = "检验结论")
    private String result;
 
    @Column(name = "CHECK_AREA__", length = 50)
    @PropertyDef(label = "扦样区域")
    private String checkArea;
 
    @Column(name = "CHECK_USER_", length = 50)
    @PropertyDef(label = "扦样人")
    private String checkUser;
 
    @Column(name = "CHECK_TIME_")
    @PropertyDef(label = "扦样时间")
    private Date checkTime;
 
    @Column(name = "CHECK_NUM_")
    @PropertyDef(label = "样品数量")
    private Double checkNum;
 
    @Column(name = "CHECK_REPRESENT_", length = 50)
    @PropertyDef(label = "样品代表")
    private String checkRepresent;
 
    @Column(name = "CHECK_LEVEL_", length = 20)
    @PropertyDef(label = "样品等级")
    private String checkLevel;
 
    @Column(name = "NORMAL_YEAR_", length = 10)
    @PropertyDef(label = "是否正常存储年限")
    private String normalYear;
 
    @Column(name = "REMARK_", length = 500)
    @PropertyDef(label = "备注", description = "备注信息")
    private String remark;
}