CZT
2023-09-14 db72a27d10fdc4de0926fb8c7cc411ec0d4ea51b
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
package com.ld.igds.models;
 
import com.bstek.dorado.annotation.PropertyDef;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
 
import lombok.Data;
 
/**
 * 化验标准配置
 *
 * @author: chen
 */
@Data
@Entity
@Table(name = "D_CHECK_STANDARD")
public class CheckStandard implements Serializable {
 
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    @Id
    @Column(name = "ID_", length = 40)
    @PropertyDef(label = "ID")
    private String id;
 
    @Column(name = "COMPANY_ID_", length = 10)
    @PropertyDef(label = "组织编码")
    private String companyId;
 
    @Column(name = "FOOD_VARIETY_", length = 20)
    @PropertyDef(label = "粮食品种")
    private String foodVariety;
 
    @Column(name = "STANDARD_ID_", length = 10)
    @PropertyDef(label = "化验项")
    private String standardId;
 
    @Column(name = "STANDARD_NAME_", length = 50)
    @PropertyDef(label = "化验项")
    private String standardName;
 
    @Column(name = "UNIT_", length = 20)
    @PropertyDef(label = "单位")
    private String unit;
 
    @Column(name = "OPERA_SYMBOL_", length = 4)
    @PropertyDef(label = "运算符号")
    private String operaSymbol;
 
    @Column(name = "UPPER_LIMIT_")
    @PropertyDef(label = "标准值")
    private Double upperLimit;
 
    @Column(name = "RULE_NUM_")
    @PropertyDef(label = "增扣重系数")
    private Double ruleNum;
 
    @Column(name = "RULE_REDUCE_")
    @PropertyDef(label = "扣重比例")
    private Double ruleReduce;
 
    @Column(name = "RULE_ADD_")
    @PropertyDef(label = "增重比例")
    private Double ruleAdd;
 
    @Column(name = "RULE_ADD_END_")
    @PropertyDef(label = "增重上限%")
    private Double ruleAddEnd;
 
    @Column(name = "RULE_PRICE_")
    @PropertyDef(label = "扣费系数")
    private Double rulePrice;
 
    @Column(name = "RULE_REDUCE_PRICE_")
    @PropertyDef(label = "扣费比例")
    private Double ruleReducePrice;
 
    @Column(name = "UPDATE_TIME_")
    @PropertyDef(label = "更新时间")
    private Date updateTime;
 
    @Column(name = "REMARKS_", length = 200)
    @PropertyDef(label = "说明")
    private String remarks;
}