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