| | |
| | | * @description: |
| | | * @version: |
| | | * @data:2020年4月7日 |
| | | * |
| | | */ |
| | | @Data |
| | | @Entity |
| | |
| | | private String companyId; |
| | | |
| | | @Id |
| | | @Column(name = "STANDARD_ID_", length = 40) |
| | | @Column(name = "STANDARD_ID_", length = 10) |
| | | @PropertyDef(label = "检测项编码") |
| | | private String standardId; |
| | | |
| | |
| | | @PropertyDef(label = "运算符号") |
| | | private String operaSymbol; |
| | | |
| | | // @Column(name = "LOWER_LIMIT_") |
| | | // @PropertyDef(label = "标准下限") |
| | | // private Double lowerLimit; |
| | | |
| | | @Column(name = "RULE_NUM_") |
| | | @PropertyDef(label = "扣重系数") |
| | | private Double ruleNum; |
| | |
| | | @PropertyDef(label = "扣重值%") |
| | | private Double ruleReduce; |
| | | |
| | | @Column(name = "STANDARD_VALUE_", length = 15) |
| | | @PropertyDef(label = "标准值,可以是范围") |
| | | private String standardValue; |
| | | |
| | | @Column(name = "VALUE_", length = 40) |
| | | @PropertyDef(label = "检测值") |
| | | private String value; |
| | | |
| | | @Column(name = "STANDARD_PRICE_") |
| | | @PropertyDef(label = "标准单价(元/斤)") |
| | | private Double standardPrice; |
| | | |
| | | @Column(name = "RULE_PRICE_") |
| | | @PropertyDef(label = "扣费系数") |
| | |
| | | @PropertyDef(label = "扣费") |
| | | private Double ruleReducePrice; |
| | | |
| | | @Column(name = "ADD_NUM_") |
| | | @PropertyDef(label = "增重", description = "单位:kG") |
| | | private Double addNum; |
| | | |
| | | @Column(name = "DE_NUM_") |
| | | @PropertyDef(label = "扣重", description = "单位:kG") |
| | | private Double deNum; |
| | | |
| | | @Column(name = "ADD_PRICE_") |
| | | @PropertyDef(label = "增价", description = "单位:元") |
| | | private Double addPrice; |
| | | |
| | | @Column(name = "DE_PRICE_") |
| | | @PropertyDef(label = "扣重", description = "单位:元") |
| | | private Double dePrice; |
| | | |
| | | @Column(name = "RESULT_", length = 2) |
| | | @PropertyDef(label = "检验结果", description = "0=不合格 1=合格") |
| | | private String result; |
| | | |
| | | @Column(name = "REMARKS_", length = 50) |
| | | @PropertyDef(label = "化验结果") |
| | | @PropertyDef(label = "备注") |
| | | private String remarks; |
| | | |
| | | } |