![JAR search and dependency download from the Maven repository](/logo.png)
net.mingsoft.cms.constant.e.ContentEnum Maven / Gradle / Ivy
/**
* Copyright (c) 2012-present 铭软科技(mingsoft.net)
* 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
* 遵循 铭软科技《服务协议》中的《保密条款》
*/
package net.mingsoft.cms.constant.e;
import net.mingsoft.base.constant.e.BaseEnum;
/**
* 文章操作类型
* @author 铭软开发团队
* 创建日期:2023-02-17 10:19:59
* 历史修订:
*/
public enum ContentEnum implements BaseEnum {
/**
* 文章显示
*/
DISPLAY("0"),
/**
* 文章不显示
*/
HIDE("1");
private String isShow;
ContentEnum(String isShow){
this.isShow =isShow;
}
@Override
public int toInt() {
return 0;
}
@Override
public String toString(){
return this.isShow;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy