package com.ruoyi.integration.drainage.model;
|
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.Null;
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* 充电站信息
|
* @author zhibing.pu
|
* @Date 2025/1/21 11:54
|
*/
|
@Data
|
public class StationInfo {
|
/**
|
* 充电站ID
|
*/
|
@NotNull
|
private String StationID;
|
/**
|
* 运营商ID
|
*/
|
@NotNull
|
private String OperatorID;
|
/**
|
* 设备所属方ID
|
* 设备所属运营平台组织机构代码
|
*/
|
@NotNull
|
private String EquipmentOwnerID;
|
/**
|
* 充电站名称
|
*/
|
@NotNull
|
private String StationName;
|
/**
|
* 充电站国家代码
|
*/
|
@NotNull
|
private String CountryCode;
|
/**
|
* 充电站省市辖区编码
|
*/
|
@NotNull
|
private String AreaCode;
|
/**
|
* 详细地址
|
*/
|
@NotNull
|
private String Address;
|
/**
|
* 站点电话
|
*/
|
@Null
|
private String StationTel;
|
/**
|
* 站点电话
|
*/
|
@NotNull
|
private String ServiceTel;
|
/**
|
* 站点类型
|
*/
|
@NotNull
|
private Integer StationType;
|
/**
|
* 站点状态
|
*/
|
@NotNull
|
private Integer StationStatus;
|
/**
|
* 车位数量,0:未知
|
*/
|
@NotNull
|
private Integer ParkNums;
|
/**
|
* 经度(保留6位小数)
|
*/
|
@NotNull
|
private BigDecimal StationLng;
|
/**
|
* 纬度(保留6位小数)
|
*/
|
@NotNull
|
private BigDecimal StationLat;
|
/**
|
* 站点引导
|
*/
|
@Null
|
private String SiteGuide;
|
/**
|
* 建设场所
|
*/
|
@NotNull
|
private Integer Construction;
|
/**
|
* 站点照片
|
* 字符串数组
|
*/
|
@Null
|
private List<String> Pictures;
|
/**
|
* 使用车型描述
|
*/
|
@Null
|
private String MatchCars;
|
/**
|
* 车位楼层及数量描述
|
*/
|
@Null
|
private String ParkInfo;
|
/**
|
* 营业时间
|
*/
|
@Null
|
private String BusineHours;
|
/**
|
* 充电电费率描述
|
*/
|
@Null
|
private String ElectricityFee;
|
/**
|
* 服务费率描述
|
*/
|
@Null
|
private String ServiceFee;
|
/**
|
* 停车费率描述
|
*/
|
@Null
|
private String ParkFee;
|
/**
|
* 支付方式:刷卡、线上、现金
|
*/
|
@Null
|
private String Payment;
|
/**
|
* 是否支持预约
|
*/
|
@Null
|
private Integer SupportOrder;
|
/**
|
* 备注
|
*/
|
@Null
|
private String Remark;
|
/**
|
* 充电设备信息列表
|
*/
|
@NotNull
|
private List<EquipmentInfo> EquipmentInfos;
|
}
|