mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-06 02:50:13 +08:00
update 新增中电联相关实体
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package com.jsowell.thirdparty.zhongdianlian.domain;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 设备基本信息
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2023/9/5 15:16
|
||||
*/
|
||||
@Data
|
||||
public class ZDLEquipmentInfo {
|
||||
private String equipmentId;
|
||||
|
||||
private String EquipmentType;
|
||||
}
|
||||
31
jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/zhongdianlian/domain/ZDLStationInfo.java
vendored
Normal file
31
jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/zhongdianlian/domain/ZDLStationInfo.java
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
package com.jsowell.thirdparty.zhongdianlian.domain;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 站点基本信息
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2023/9/5 14:10
|
||||
*/
|
||||
@Data
|
||||
public class ZDLStationInfo {
|
||||
private String stationId;
|
||||
private String operatorId;
|
||||
private String equipmentOwnerId;
|
||||
private String stationName;
|
||||
private String countryCode;
|
||||
private String areaCode;
|
||||
private String address;
|
||||
private String serviceTel;
|
||||
private Integer stationType;
|
||||
private Integer stationStatus;
|
||||
private Integer parkNums;
|
||||
private BigDecimal stationLng;
|
||||
private BigDecimal stationLat;
|
||||
private Integer construction;
|
||||
private List<ZDLEquipmentInfo> equipmentInfos;
|
||||
}
|
||||
Reference in New Issue
Block a user