充电桩主动申请充电,平台生成订单号回复并启动充电

This commit is contained in:
Lemon
2023-03-18 10:59:02 +08:00
parent a2a5c90704
commit 52a6db253e
12 changed files with 249 additions and 44 deletions

View File

@@ -0,0 +1,34 @@
package com.jsowell.pile.dto;
import lombok.Data;
/**
* 用户绑定卡DTO
*
* @author JS-ZZA
* @date 2023/3/17 15:16
*/
@Data
public class BindingCardDTO {
private String memberId;
/**
* 逻辑卡号
*/
private String logicCard;
/**
* 物理卡号
*/
private String physicsCard;
/**
* 电话号码
*/
private String phoneNumber;
/**
* 验证码
*/
private String verificationCode;
}