Commit c6c65f5c authored by tangwei's avatar tangwei

增加场站字段

parent f2faf74b
......@@ -96,5 +96,8 @@ public class StationBasicDto extends BaseDto {
@ApiModelProperty(value = "坐标列表")
private List<StationCoordinateDto> stationCoordinate;
//新增 场站第三方编号
private String stationNumber;
//新增场站 设备检测网关
private String gatewayId;
}
......@@ -139,4 +139,16 @@ public class StationBasic extends BaseEntity {
@TableField(exist =false)
private List<StationCoordinate> stationCoordinate;
//新增 场站第三方编号
@TableField("station_number")
private String stationNumber;
//新增场站 设备检测网关
@TableField("gateway_id")
private String gatewayId;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment