| package com.fzzy.push.sx2023.data; | 
|   | 
| import com.alibaba.fastjson.annotation.JSONField; | 
| import com.bstek.dorado.annotation.PropertyDef; | 
| import com.fasterxml.jackson.annotation.JsonProperty; | 
| import lombok.Data; | 
|   | 
| import java.io.Serializable; | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @Description | 
|  * @Author CZT | 
|  * @Date 2024/4/24 21:08 | 
|  */ | 
| @Data | 
| public class SX2023Api1111 implements Serializable { | 
|   | 
|     @PropertyDef(label = "单位代码") | 
|     @JsonProperty("DWDM") | 
|     private String dwdm; | 
|   | 
|     @PropertyDef(label = "库区代码") | 
|     @JsonProperty("KQDM") | 
|     private String kqdm; | 
|   | 
|     @PropertyDef(label = "视频监控设备名称") | 
|     @JsonProperty("SPJKSBMC") | 
|     private String spjksbmc; | 
|   | 
|     @PropertyDef(label = "视频监控设备id") | 
|     @JsonProperty("SPJKSBID") | 
|     private String spjksbid; | 
|   | 
|     @PropertyDef(label = "视频监控设备相对位置") | 
|     @JsonProperty("SPJKSBXDWZ") | 
|     private String spjksbxdwz; | 
|   | 
|     @PropertyDef(label = "视频监控设备位置样式") | 
|     @JsonProperty("SPJKSBWZYS") | 
|     private String spjksbwzys; | 
|   | 
|     @PropertyDef(label = "视频监控类型", description = ";1:仓内,2:业务,3:安防;") | 
|     @JsonProperty("SPJKLX") | 
|     private String spjklx; | 
|   | 
|     @PropertyDef(label = "备注") | 
|     @JsonProperty("BZ") | 
|     private String bz; | 
|   | 
|     @PropertyDef(label = "操作标志") | 
|     @JsonProperty("CZBZ") | 
|     private String czbz; | 
|   | 
|     @PropertyDef(label = "最后更新时间") | 
|     @JSONField(format = "yyyy-MM-dd HH:mm:ss") | 
|     @JsonProperty("ZHGXSJ") | 
|     private Date zhgxsj; | 
|   | 
| } |