feat: 新增性别未定义时的枚举
This commit is contained in:
parent
c52ec92b05
commit
0c99c16989
|
@ -11,7 +11,8 @@ import lombok.Getter;
|
|||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum SexEnum {
|
||||
|
||||
/** 未定义 */
|
||||
UNSPECIFIED(0),
|
||||
/** 男 */
|
||||
MALE(1),
|
||||
/** 女 */
|
||||
|
|
Loading…
Reference in New Issue