update 第三方平台设备认证、请求启动充电接口

This commit is contained in:
Lemon
2023-11-07 14:08:36 +08:00
parent 10e1d7eeb6
commit abb49f392e
5 changed files with 53 additions and 32 deletions

View File

@@ -3,6 +3,8 @@ package com.jsowell.pile.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.math.BigDecimal;
/**
* 请求启动充电DTO
*
@@ -43,4 +45,10 @@ public class QueryStartChargeDTO {
@JsonProperty(value = "OperatorID")
private String operatorId;
/**
* 可充电金额
*/
@JsonProperty(value = "AccountBalance")
private BigDecimal accountBalance;
}