mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
20 lines
394 B
Java
20 lines
394 B
Java
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;
|
|
}
|