This commit is contained in:
2023-11-07 16:31:08 +08:00
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;
}