| | |
| | | @ApiModelProperty(value = "站点详细地点") |
| | | @TableField("\"station_location\"") |
| | | private String stationLocation; |
| | | |
| | | /** |
| | | * 站点经度 |
| | | */ |
| | | @ApiModelProperty(value = "站点经度") |
| | | @TableField("\"station_longitude\"") |
| | | private String stationLongitude; |
| | | |
| | | /** |
| | | * 站点纬度 |
| | | */ |
| | | @ApiModelProperty(value = "站点纬度") |
| | | @TableField("\"station_latitude\"") |
| | | private String stationLatitude; |
| | | |
| | | /** |
| | | * 站点经度 |
| | | */ |
| | | @ApiModelProperty(value = "水库经度") |
| | | // @TableField("\"center_long\"") |
| | | @TableField(exist = false) |
| | | private String centerLong; |
| | | |
| | | /** |
| | | * 站点纬度 |
| | | */ |
| | | @ApiModelProperty(value = "水库纬度") |
| | | // @TableField("\"center_lat\"") |
| | | @TableField(exist = false) |
| | | private String centerLat; |
| | | |
| | | /** |
| | | * 基面名称 |
| | | */ |
| | |
| | | @TableField(exist = false) |
| | | private String radius; |
| | | |
| | | /** |
| | | * 设备状态 |
| | | */ |
| | | @ApiModelProperty(value = "设备状态(0:弃用、1:使用中、2:维修中)") |
| | | @TableField("\"device_status\"") |
| | | private String deviceStatus; |
| | | |
| | | /** |
| | | * 设备状态说明 |
| | | */ |
| | | @ApiModelProperty(value = "设备状态说明") |
| | | @TableField("\"device_status_note\"") |
| | | private String deviceStatusNote; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 应报数 |
| | | */ |
| | | @ApiModelProperty(value = "应报数") |
| | | @TableField("\"should_report\"") |
| | | private String shouldReport; |
| | | |
| | | |
| | | } |