Pu Zhibing
2025-04-16 7cb8a6506062d0489dcd601a375f9dc89cbf6b4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.ruoyi.integration.drainage.model;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
import java.util.List;
 
/**
 * 设备接口状态查询
 * @author zhibing.pu
 * @Date 2025/1/21 15:01
 */
@Data
public class QueryStationStatus {
    /**
     * 充电站ID列表
     * 数组长度不超过50
     */
    @NotNull
    @JsonProperty("StationIDs")
    private List<String> stationIDs;
    /**
     * 运营商服务平台ID,字符9位
     * 数组长度不超过50
     */
    @NotNull
    @JsonProperty("OperatorID")
    private String operatorID;
}