package com.mindskip.xzs.domain.enums; import lombok.Getter; /** * @author:xp * @date:2024/7/15 15:30 */ @Getter public enum NotifyRefType { FEEDBACK("feedback", "错题反馈"), MOBILIZE("mobilize", "调动部门"), STATUS("status", "状态设置"), ; private final String value; private final String desc; NotifyRefType(String value, String desc) { this.value = value; this.desc = desc; } }