| | |
| | | package cn.gistack.sm.sjztmd.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.data.annotation.Id; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | @ApiModelProperty(value = "主键") |
| | | @TableField("\"guid\"") |
| | | @TableId("\"guid\"") |
| | | private String guid; |
| | | |
| | | /** |
| | |
| | | @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("\"sys_resource\"") |
| | | private String sysResource; |
| | | |
| | | @ApiModelProperty(value = "范围(公里)") |
| | | @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; |
| | | |
| | | |
| | | } |