| | |
| | | @Entity |
| | | @Table(name = "D_SEC_SNAP_CONF") |
| | | public class SecSnapConf { |
| | | |
| | | @Id |
| | | @Column(name = "ID_", length = 40) |
| | | @PropertyDef(label = "主键") |
| | |
| | | @Column(name = "DEPT_ID_", length = 30) |
| | | @PropertyDef(label = "所属分库") |
| | | private String deptId; |
| | | |
| | | |
| | | @Column(name = "DEPOT_ID_", length = 50) |
| | | @PropertyDef(label = "所属仓库") |
| | | private String depotId; |
| | |
| | | @PropertyDef(label = "关联摄像头") |
| | | private String cameraId; |
| | | |
| | | @Column(name = "UPDATE_TIME_", length = 1) |
| | | @Column(name = "ACT_HOUR1_") |
| | | @PropertyDef(label = "执行时间1") |
| | | private int actHour1; |
| | | |
| | | @Column(name = "ACT_HOUR2_") |
| | | @PropertyDef(label = "执行时间2") |
| | | private int actHour2; |
| | | |
| | | @Column(name = "ACT_HOUR3_") |
| | | @PropertyDef(label = "执行时间3") |
| | | private int actHour3; |
| | | |
| | | @Column(name = "UPDATE_TIME_") |
| | | @PropertyDef(label = "更新时间") |
| | | private Date updateTime; |
| | | } |