package com.mindskip.xzs.domain.enums; import com.baomidou.mybatisplus.annotation.EnumValue; import lombok.Getter; /** * @author:xp * @date:2024/7/12 15:32 */ @Getter public enum YesOrNoEnum { YES("yes", "是"), NO("yes", "否"), ; @EnumValue private final String value; private final String desc; YesOrNoEnum(String value, String desc) { this.value = value; this.desc = desc; } }