| | |
| | | |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import lombok.Data; |
| | | |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | import javax.persistence.*; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 接口表-库区图视频监控设备点位标注 |
| | | */ |
| | | @Data |
| | | @Getter |
| | | @Setter |
| | | @Entity |
| | | @Table(name = "API_1111") |
| | | public class Api1111 implements Serializable { |
| | |
| | | @Column(name = "bz", length = 1024) |
| | | private String bz; |
| | | |
| | | @PropertyDef(label = "操作标志" ) |
| | | @Column(name = "czbz", length = 1) |
| | | private String czbz; |
| | | |
| | | @PropertyDef(label = "视频监控类型" ,description = ";1:仓内,2:业务,3:安防;") |
| | | @Column(name = "spjklx", length = 1) |
| | | private String spjklx; |
| | | |
| | | @PropertyDef(label = "视频点位类型" ) |
| | | @Column(name = "spdwlx", length = 2) |
| | | private String spdwlx; |
| | | |
| | | @PropertyDef(label = "仓房代码" ) |
| | | @Column(name = "cfdm", length = 25) |
| | | private String cfdm; |
| | | |
| | | @PropertyDef(label = "廒间代码" ) |
| | | @Column(name = "ajdm", length = 28) |
| | | private String ajdm; |
| | | |
| | | @PropertyDef(label = "海康设备唯一标识" ) |
| | | @Column(name = "hkCameraIndexCode", length = 36) |
| | | private String hkCameraIndexCode; |
| | | |
| | | @PropertyDef(label = "操作标志" ) |
| | | @Column(name = "czbz", length = 1) |
| | | private String czbz; |
| | | |
| | | @PropertyDef(label = "最后更新时间" ) |
| | | @JSONField(format = "yyyy-MM-dd HH:mm:ss") |