2024-03-26 17:13:00 +08:00
|
|
|
package com.jsowell.pile.thirdparty;
|
2023-09-05 15:53:16 +08:00
|
|
|
|
2023-09-08 09:31:03 +08:00
|
|
|
import com.alibaba.fastjson2.annotation.JSONField;
|
2023-09-14 10:13:50 +08:00
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Builder;
|
2023-09-05 15:53:16 +08:00
|
|
|
import lombok.Data;
|
2023-09-14 10:13:50 +08:00
|
|
|
import lombok.NoArgsConstructor;
|
2023-09-05 15:53:16 +08:00
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 站点基本信息
|
|
|
|
|
*
|
|
|
|
|
* @author Lemon
|
|
|
|
|
* @Date 2023/9/5 14:10
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
2023-09-14 10:13:50 +08:00
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
@Builder
|
2023-09-05 15:53:16 +08:00
|
|
|
public class ZDLStationInfo {
|
2023-09-08 09:31:03 +08:00
|
|
|
@JSONField(name = "StationID")
|
2023-09-05 15:53:16 +08:00
|
|
|
private String stationId;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "OperatorID")
|
2023-09-05 15:53:16 +08:00
|
|
|
private String operatorId;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "EquipmentOwnerID")
|
2023-09-05 15:53:16 +08:00
|
|
|
private String equipmentOwnerId;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "StationName")
|
2023-09-05 15:53:16 +08:00
|
|
|
private String stationName;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "CountryCode")
|
2023-09-05 15:53:16 +08:00
|
|
|
private String countryCode;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "AreaCode")
|
2023-09-05 15:53:16 +08:00
|
|
|
private String areaCode;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "Address")
|
2023-09-05 15:53:16 +08:00
|
|
|
private String address;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "ServiceTel")
|
2023-09-05 15:53:16 +08:00
|
|
|
private String serviceTel;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "StationType")
|
2023-09-05 15:53:16 +08:00
|
|
|
private Integer stationType;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "StationStatus")
|
2023-09-05 15:53:16 +08:00
|
|
|
private Integer stationStatus;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "ParkNums")
|
2023-09-05 15:53:16 +08:00
|
|
|
private Integer parkNums;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "StationLng")
|
2023-09-05 15:53:16 +08:00
|
|
|
private BigDecimal stationLng;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "StationLat")
|
2023-09-05 15:53:16 +08:00
|
|
|
private BigDecimal stationLat;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
|
|
|
|
@JSONField(name = "Construction")
|
2023-09-05 15:53:16 +08:00
|
|
|
private Integer construction;
|
2023-09-08 09:31:03 +08:00
|
|
|
|
2024-01-17 17:19:01 +08:00
|
|
|
@JSONField(name = "ParkFee")
|
|
|
|
|
private String parkFee;
|
|
|
|
|
|
2024-01-19 15:28:55 +08:00
|
|
|
@JSONField(name = "Pictures")
|
|
|
|
|
private List<String> pictures;
|
|
|
|
|
|
2023-09-08 09:31:03 +08:00
|
|
|
@JSONField(name = "EquipmentInfos")
|
2023-09-05 15:53:16 +08:00
|
|
|
private List<ZDLEquipmentInfo> equipmentInfos;
|
|
|
|
|
}
|