update 用户绑定车牌号接口

This commit is contained in:
DESKTOP-D9QDT1P\JS-ZZA
2023-03-06 08:36:39 +08:00
parent d6f2a2234c
commit 3874b057b7
8 changed files with 127 additions and 20 deletions

View File

@@ -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;
}