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

com.fasc.open.api.enums.template.SetFieldStatusEnum Maven / Gradle / Ivy

The newest version!
package com.fasc.open.api.enums.template;

/**
 * @author zhoufucheng
 * @date 2022/12/5 20:21
 */
public enum SetFieldStatusEnum {
    ENABLE("enable", "启用"),
    DISABLE("disable", "禁用"),
    ;

    private String code;
    private String remark;

    SetFieldStatusEnum(String code, String remark) {
        this.code = code;
        this.remark = remark;
    }

    public String getCode() {
        return code;
    }

    public String getRemark() {
        return remark;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy