|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @JsonPropertyOrder({ "intakeId", "intakeName", "divideId", "divideName", "blockId", "blockName", "isBind", "address", "lng", "lat", "operator", "operateDt", "remarks", "controllerId", "rtuAddr"}) | 
|---|
|  |  |  | @JsonPropertyOrder({ "intakeId", "intakeName", "divideId", "divideName", "blockId", "blockName", "isBind", "address", "lng", "lat", "operator", "operateDt", "remarks", "controllerId", "rtuAddr", "protocol", "findDt", "isOnLine", "bindNumber"}) | 
|---|
|  |  |  | @HeadRowHeight(30) | 
|---|
|  |  |  | @ContentRowHeight(20) | 
|---|
|  |  |  | public class VoIntake implements BaseEntity { | 
|---|
|  |  |  | 
|---|
|  |  |  | @ColumnWidth(15) | 
|---|
|  |  |  | private String blockName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "绑定设备") | 
|---|
|  |  |  | @ExcelProperty(value = {"${title}", "绑定设备"}) | 
|---|
|  |  |  | @Schema(title = "是否绑定设备") | 
|---|
|  |  |  | @ExcelProperty(value = {"${title}", "是否绑定设备"}) | 
|---|
|  |  |  | @ColumnWidth(10) | 
|---|
|  |  |  | private String isBind; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | @ExcelProperty(value = {"${title}", "控制器地址"}) | 
|---|
|  |  |  | @ColumnWidth(15) | 
|---|
|  |  |  | private String rtuAddr; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "通讯协议") | 
|---|
|  |  |  | @ExcelIgnore | 
|---|
|  |  |  | private String protocol; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") | 
|---|
|  |  |  | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|---|
|  |  |  | @Schema(title = "发现日期时间") | 
|---|
|  |  |  | @ExcelProperty(value = {"${title}", "发现时间"}) | 
|---|
|  |  |  | @ColumnWidth(20) | 
|---|
|  |  |  | private Date findDt; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "绑定次数") | 
|---|
|  |  |  | @ExcelProperty(value = {"${title}", "绑定次数"}) | 
|---|
|  |  |  | @ColumnWidth(10) | 
|---|
|  |  |  | private Integer bindNumber; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|