update 联联平台 枪口功率=设备额定功率/枪数

This commit is contained in:
Lemon
2023-06-20 15:52:13 +08:00
parent 780b4c5d5e
commit 6e2ee7f794
10 changed files with 181 additions and 28 deletions

View File

@@ -0,0 +1,16 @@
package com.jsowell.pile.dto;
import lombok.Data;
/**
* 充值订单金额DTO
*
* @author Lemon
* @Date 2023/6/19 14:40
*/
@Data
public class RechargeOrderAmountDTO {
private String memberId;
private String rechargeAmount;
}

View File

@@ -0,0 +1,33 @@
package com.jsowell.pile.dto;
import lombok.Data;
/**
* 远程账户更新余额 DTO
*
* @author Lemon
* @Date 2023/6/19 10:04
*/
@Data
public class RemoteAccountBalanceUpdateDTO {
/**
* 桩编码
*/
private String pileSn;
/**
* 枪口号
*/
private String connectorCode;
/**
* 卡号
*/
private String logicCard;
/**
* 修改后账户余额
*/
private String accountBalance;
}