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;
|
}
|