疯狂的狮子li
2023-05-23 b8e389bb7e7e08ba64df847a46c27356bdef7d31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.dromara.common.core.domain.model;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 用户注册对象
 *
 * @author Lion Li
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class RegisterBody extends LoginBody {
 
    private String userType;
 
}