All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fanzezhen.common.mp.enums.DictEnum Maven / Gradle / Ivy

There is a newer version: 3.0.1-2023.10.13
Show newest version
package com.github.fanzezhen.common.mp.enums;

import com.github.fanzezhen.common.core.dict.AbstractDict;
import com.github.fanzezhen.common.mp.model.SysUserDict;
import lombok.Getter;

/**
 * @author zezhen.fan
 */
public enum DictEnum {
    /**
     * 系统用户字典
     */
    SYS_USER(SysUserDict.getInstance(), "系统用户字典");

    @Getter
    private final AbstractDict dict;
    @Getter
    private final String desc;

    DictEnum(AbstractDict dict, String desc) {
        this.dict = dict;
        this.desc = desc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy