peng
2025-10-31 22b948405d2e7d285a0ed2ad2bd4857383561a6e
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;
 
}