mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
update 用户绑定车牌号接口
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.jsowell.pile.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 用户绑定车牌号
|
||||
*
|
||||
* @author JS-ZZA
|
||||
* @date 2023/3/4 11:39
|
||||
*/
|
||||
@Data
|
||||
public class BindingCarNoDTO {
|
||||
/**
|
||||
* 手机号码
|
||||
*/
|
||||
private String phoneNumber;
|
||||
|
||||
/**
|
||||
* 短信验证码
|
||||
*/
|
||||
private String verificationCode;
|
||||
|
||||
/**
|
||||
* 车牌号
|
||||
*/
|
||||
private String carNo;
|
||||
}
|
||||
Reference in New Issue
Block a user