mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
43 lines
575 B
Java
43 lines
575 B
Java
package com.jsowell.pile.dto;
|
|
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 用户绑定车牌号
|
|
*
|
|
* @author JS-ZZA
|
|
* @date 2023/3/4 11:39
|
|
*/
|
|
@Data
|
|
@Builder
|
|
public class BindingCarNoDTO {
|
|
private String id;
|
|
|
|
private List<Integer> ids;
|
|
|
|
private String memberId;
|
|
|
|
/**
|
|
* 手机号码
|
|
*/
|
|
private String phoneNumber;
|
|
|
|
/**
|
|
* 短信验证码
|
|
*/
|
|
private String verificationCode;
|
|
|
|
/**
|
|
* 车牌号
|
|
*/
|
|
private String carNo;
|
|
|
|
/**
|
|
* vin码
|
|
*/
|
|
private String vinCode;
|
|
}
|