package com.ruoyi.jianguan.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* 充换电站信息
|
*/
|
@Data
|
public class SupStationInfo {
|
// 充换电站ID
|
@JsonProperty("StationID")
|
private String StationID;
|
// 充换电站唯一编码
|
@JsonProperty("StationUniqueNumber")
|
private String StationUniqueNumber;
|
//平台运营商
|
//ID
|
@JsonProperty("OperatorID")
|
private String OperatorID;
|
//充换电服务
|
//运营商ID
|
@JsonProperty("EquipmentOwnerID")
|
private String EquipmentOwnerID;
|
//充换电站名
|
//称
|
@JsonProperty("StationName")
|
private String StationName;
|
//充换电站国
|
//家代码
|
@JsonProperty("CountryCode")
|
private String CountryCode;
|
//充换电站省
|
//市辖区编码
|
@JsonProperty("AreaCode")
|
private String AreaCode;
|
//详细地址
|
@JsonProperty("Address")
|
private String Address;
|
//充换电站所
|
//在县以下行
|
//政区划代码
|
@JsonProperty("AreaCodeCountryside")
|
private String AreaCodeCountryside;
|
// 站点电话
|
@JsonProperty("StationTel")
|
private String StationTel;
|
// 服务电话
|
@JsonProperty("ServiceTel")
|
private String ServiceTel;
|
// 站点分类
|
@JsonProperty("StationClassification")
|
private Integer StationClassification;
|
//通用类型
|
@JsonProperty("GeneralApplicationType")
|
private Integer GeneralApplicationType;
|
//站点类型
|
@JsonProperty("StationType")
|
private Integer StationType;
|
//站点状态
|
@JsonProperty("StationStatus")
|
private Integer StationStatus;
|
//车位数量
|
@JsonProperty("ParkNums")
|
private Integer ParkNums;
|
//经度
|
@JsonProperty("StationLng")
|
private BigDecimal StationLng;
|
//纬度
|
@JsonProperty("StationLat")
|
private BigDecimal StationLat;
|
//站点引导
|
@JsonProperty("SiteGuide")
|
private String SiteGuide;
|
//建设场所
|
@JsonProperty("Construction")
|
private Integer Construction;
|
//站点照片
|
@JsonProperty("Pictures")
|
private List<String> Pictures;
|
//使用车型描
|
//述
|
@JsonProperty("MatchCars")
|
private String MatchCars;
|
//服务车型描
|
//述
|
@JsonProperty("SwapMatchCars")
|
private List<String> SwapMatchCars;
|
//车位楼层及
|
//数量描述
|
@JsonProperty("ParkInfo")
|
private String ParkInfo;
|
//营业时间
|
@JsonProperty("BusineHours")
|
private String BusineHours;
|
//7*24小时营
|
//业
|
@JsonProperty("RoundTheClock")
|
private Integer RoundTheClock;
|
//停车费类型
|
@JsonProperty("ParkType")
|
private Integer ParkType;
|
//停车费描述
|
@JsonProperty("ParkFee")
|
private String ParkFee;
|
//支付方式
|
@JsonProperty("Payment")
|
private String Payment;
|
//是否支持预
|
//约
|
@JsonProperty("SupportOrder")
|
private Integer SupportOrder;
|
//备注
|
@JsonProperty("Remark")
|
private String Remark;
|
//电费类型
|
@JsonProperty("ElectricityType")
|
private Integer ElectricityType;
|
//报装类型
|
@JsonProperty("BusinessExpandType")
|
private Integer BusinessExpandType;
|
//报装电源容
|
//量
|
@JsonProperty("Capacity")
|
private BigDecimal Capacity;
|
//站点额定总
|
//功率
|
@JsonProperty("RatedPower")
|
private BigDecimal RatedPower;
|
//峰谷分时
|
@JsonProperty("PeriodFee")
|
private Integer PeriodFee;
|
//正式投运时
|
//间
|
@JsonProperty("OfficialRunTime")
|
private String OfficialRunTime;
|
//充换电站方
|
//位
|
@JsonProperty("StationOrientation")
|
private Integer StationOrientation;
|
//充换电站建
|
//设面积
|
@JsonProperty("StationArea")
|
private BigDecimal StationArea;
|
//充换电站人
|
//工值守
|
@JsonProperty("HavePerson")
|
private Integer HavePerson;
|
//视频监控配
|
//套情况
|
@JsonProperty("VideoMonitor")
|
private Integer VideoMonitor;
|
//周边配套设
|
// 施
|
@JsonProperty("SupportingFacilities")
|
private List<Integer> SupportingFacilities;
|
//是否有小票
|
//机
|
@JsonProperty("PrinterFlag")
|
private Integer PrinterFlag;
|
//是否有道闸
|
@JsonProperty("BarrierFlag")
|
private Integer BarrierFlag;
|
//是否有地锁
|
@JsonProperty("ParkingLockFlag")
|
private Integer ParkingLockFlag;
|
//充电设备信
|
//息列表
|
@JsonProperty("EquipmentInfos")
|
private List<EquipmentInfo> EquipmentInfos;
|
//换电设备信
|
//息
|
@JsonProperty("SwapEquipmentInfos")
|
private List<SupSwapEquipmentInfo> SwapEquipmentInfos;
|
//充电电费描
|
//述
|
@JsonProperty("ElectricityFee")
|
private String ElectricityFee;
|
//设备所属方
|
//名称
|
@JsonProperty("EquipmentOwnerName")
|
private String EquipmentOwnerName;
|
//供电局用户
|
//编号
|
@JsonProperty("ResidentNo")
|
private String ResidentNo;
|
//供电类型
|
@JsonProperty("SupplyType")
|
private Integer SupplyType;
|
//表号
|
@JsonProperty("WattHourMeterNo")
|
private String WattHourMeterNo;
|
//外电功率
|
@JsonProperty("ForwardPower")
|
private BigDecimal ForwardPower;
|
//服务费描述
|
@JsonProperty("ServiceFee")
|
private String ServiceFee;
|
//充电站全省
|
//唯一备案号
|
@JsonProperty("RecordUniqueNo")
|
private String RecordUniqueNo;
|
|
|
|
}
|