package com.ruoyi.jianguan.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 16:05
|
*/
|
@Data
|
public class QueryEquipBusinessPolicyResult {
|
/**
|
* 业务策略查询流水号
|
*/
|
@NotNull
|
@JsonProperty("EquipBizSeq")
|
private String equipBizSeq;
|
/**
|
* 充电设备接口编码
|
*/
|
@NotNull
|
@JsonProperty("ConnectorID")
|
private String connectorID;
|
/**
|
* 操作结果
|
* 0:成功
|
* 1:失败
|
*/
|
@NotNull
|
@JsonProperty("SuccStat")
|
private Integer succStat;
|
/**
|
* 失败原因
|
* 0:无
|
* 1:此充电桩业务策略不存在
|
*/
|
@NotNull
|
@JsonProperty("FailReason")
|
private Integer failReason;
|
/**
|
* 时段数N
|
* 0`32
|
*/
|
@NotNull
|
@JsonProperty("SumPeriod")
|
private Integer sumPeriod;
|
/**
|
* 计策信息
|
*/
|
@NotNull
|
@JsonProperty("PolicyInfos")
|
private List<PolicyInfo> policyInfos;
|
|
}
|