jiazx0107@163.com
2023-05-26 75e83ba772ef70396b2595ccab646edf8ec4df51
igds-core/src/main/java/com/ld/igds/models/CheckItem.java
@@ -18,7 +18,6 @@
 * @description:
 * @version:
 * @data:2020年4月7日
 *
 */
@Data
@Entity
@@ -41,7 +40,7 @@
   private String companyId;
   @Id
   @Column(name = "STANDARD_ID_", length = 40)
    @Column(name = "STANDARD_ID_", length = 10)
   @PropertyDef(label = "检测项编码")
   private String standardId;
@@ -61,10 +60,6 @@
   @PropertyDef(label = "运算符号")
   private String operaSymbol;
//   @Column(name = "LOWER_LIMIT_")
//   @PropertyDef(label = "标准下限")
//   private Double lowerLimit;
   @Column(name = "RULE_NUM_")
   @PropertyDef(label = "扣重系数")
   private Double ruleNum;
@@ -81,17 +76,9 @@
   @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 = "扣费系数")
@@ -101,8 +88,28 @@
   @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;
   
}