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

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

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

/**
 * @author Fadada
 * 2021/9/23 11:03:29
 */
public enum DocTemplateStatusEnum {
    /**
     * 文档模板状态:
     * invalid: 停用
     * valid: 启用
     */
    INVALID("invalid", "停用"),
    VALID("valid", "启用");

    private String code;
    private String remark;

    DocTemplateStatusEnum(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