update 小程序首页查询站点列表接口

This commit is contained in:
Lemon
2025-03-26 16:47:20 +08:00
parent f136f66855
commit 1232418627
3 changed files with 59 additions and 36 deletions

View File

@@ -110,6 +110,13 @@ public class QueryStationDTO extends BaseEntity {
*/
private String stationType;
/**
* 充电方式
* 1 - 直流
* 2 - 交流
*/
private String chargeMode;
/**
* 充电速度(快充/慢充)
* 1 - 快充30-180kw
@@ -118,10 +125,9 @@ public class QueryStationDTO extends BaseEntity {
*/
private String chargeSpeed;
/**
* 其他筛选条件
*/
private OtherOptions otherOptions;
private String startPower;
private String endPower;
private List<String> stationIds;
@@ -142,26 +148,8 @@ public class QueryStationDTO extends BaseEntity {
*/
private String parkingLockFlag;
@Data
public static class OtherOptions {
/**
* 充电方式
* 1 - 直流
* 2 - 交流
*/
private String chargeMode;
/**
* 充电桩功率
* 1 - 快充30-180kw
* 2 - 慢充(<30kw
* 3 - 超充≥180kw
*/
private List<String> pilePower;
/**
* 我的收藏
*/
private String myCollectionFlag;
}
/**
* 我的收藏
*/
private String myCollectionFlag;
}