dev.macula.boot.enums.GenderEnum Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2023 Macula
* macula.dev, China
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dev.macula.boot.enums;
import dev.macula.boot.base.IBaseEnum;
import lombok.Getter;
/**
* 性别枚举
*
* @author haoxr
* @since 2022/4/10
*/
public enum GenderEnum implements IBaseEnum {
MALE(1, "男"), FEMALE(2, "女"), UNKNOWN(0, "未知");
@Getter
// @EnumValue // Mybatis-Plus 提供注解表示插入数据库时插入该值
private final Integer value;
@Getter
// @JsonValue // 表示对枚举序列化时返回此字段
private final String label;
GenderEnum(Integer value, String label) {
this.value = value;
this.label = label;
}
}