| | |
| | | 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 |
| | |
| | | @Column(name = "COMPANY_ID_", length = 10) |
| | | @PropertyDef(label = "组织编码") |
| | | private String companyId; |
| | | |
| | | @Column(name = "DEPT_ID_", length = 40) |
| | | @PropertyDef(label = "所属库点") |
| | | private String deptId; |
| | | |
| | | @Column(name = "FOOD_VARIETY_", length = 20) |
| | | @PropertyDef(label = "粮食品种") |
| | |
| | | @PropertyDef(label = "标准上限") |
| | | private Double upperLimit; |
| | | |
| | | // @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_PRICE_") |
| | | @PropertyDef(label = "标准单价(元/斤)") |
| | | private Double standardPrice; |
| | | |
| | | @Column(name = "RULE_PRICE_") |
| | | @PropertyDef(label = "扣费系数") |
| | | private Double rulePrice; |
| | |
| | | @Column(name = "REMARKS_",length= 200) |
| | | @PropertyDef(label = "说明") |
| | | private String remarks; |
| | | |
| | | } |