Initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.ruoyi.domain.other;
|
||||
|
||||
import lombok.Data;
|
||||
import org.hibernate.validator.constraints.Length;
|
||||
|
||||
@Data
|
||||
public class ApiRegisterBody {
|
||||
|
||||
@Length(min = 2,max = 12)
|
||||
private String nickName;
|
||||
|
||||
private String phoneNumber;
|
||||
|
||||
private String password;
|
||||
|
||||
private String parentInvitationCode;
|
||||
|
||||
private String code;
|
||||
|
||||
private String bdVid;
|
||||
}
|
||||
Reference in New Issue
Block a user