| | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 货位信息 |
| | | * |
| | | * @Author:YAN |
| | | */ |
| | | @Data |
| | |
| | | @Column(name = "ID_", length = 50) |
| | | @PropertyDef(label = "货位编号") |
| | | private String id; |
| | | |
| | | @Column(name = "ggm", length = 50) |
| | | @PropertyDef(label = "国规码") |
| | | private String ggm; |
| | | |
| | | @Column(name = "COMPANY_ID_", length = 10) |
| | | @PropertyDef(label = "组织编码") |
| | |
| | | @Column(name = "UPDATE_TIME_") |
| | | @PropertyDef(label = "数据更新时间") |
| | | private Date updateTime; |
| | | |
| | | // ------------其他属性信息------------// |
| | | @Transient |
| | | @PropertyDef(label = "粮食品种") |
| | | private String foodVarietyName; |
| | | |
| | | @Transient |
| | | @PropertyDef(label = "粮食性质") |
| | | private String foodTypeName; |
| | | |
| | | @Transient |
| | | @PropertyDef(label = "仓库类型") |
| | | private String depotTypeName; |
| | | |
| | | @Transient |
| | | @PropertyDef(label = "仓库类型") |
| | | private String depotStatusName; |
| | | |
| | | @Transient |
| | | @PropertyDef(label = "粮食等级") |
| | | private String foodLevelName; |
| | | |
| | | @Transient |
| | | @PropertyDef(label = "X坐标", description = "三维模型中坐标,页面无需维护") |
| | | private Double posX; |
| | | |
| | | @Transient |
| | | @PropertyDef(label = "Y坐标", description = "三维模型中坐标,页面无需维护") |
| | | private Double posY; |
| | | |
| | | } |