This commit is contained in:
2023-05-31 16:05:29 +08:00
6 changed files with 175 additions and 40 deletions

View File

@@ -0,0 +1,19 @@
package com.jsowell.pile.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
* 联联平台查询充电状态
*
* @author JS-ZZA
* @date 2023/5/31 15:00
*/
@Data
public class QueryEquipChargeStatusDTO {
@JsonProperty(value = "StartChargeSeq")
private String StartChargeSeq;
@JsonProperty(value = "OperatorID")
private String OperatorID;
}