22 lines
362 B
Java
22 lines
362 B
Java
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;
|
|
}
|