| | |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Id; |
| | | import javax.persistence.Table; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 接口表-仓内视频图像数据表 |
| | | * |
| | | * @author chen |
| | | * @date 2022-09-02 15:57 |
| | | * @author czt |
| | | * @date 2023-09-02 15:57 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | |
| | | @PropertyDef(label = "库区代码") |
| | | private String kqdm; |
| | | |
| | | @PropertyDef(label = "统一库区编码") |
| | | private String tykqbm; |
| | | |
| | | @PropertyDef(label = "视频监控设备id") |
| | | private String spjksbid; |
| | | |
| | | @PropertyDef(label = "廒间代码") |
| | | private String ajdm; |
| | | |
| | | @PropertyDef(label = "统一廒间编码") |
| | | private String tyajbm; |
| | | |
| | | @PropertyDef(label = "货位代码") |
| | | private String hwdm; |
| | | |
| | | @PropertyDef(label = "统一货位编码" ) |
| | | private String tyhwbm; |
| | | |
| | | @JSONField(format = "yyyy-MM-dd HH:mm:ss") |
| | | @PropertyDef(label = "抓拍时间") |
| | |
| | | @PropertyDef(label = "图像编号") |
| | | private String txbh; |
| | | |
| | | @PropertyDef(label = "文件id") |
| | | private String fileStorageId; |
| | | |
| | | @JSONField(name = "yzwbh") |
| | | @PropertyDef(label = "预置位编号") |
| | | private String yzwbh; |
| | |
| | | |
| | | @PropertyDef(label = "标记位") |
| | | private String bjw; |
| | | |
| | | } |