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

mtons.lang.EntityStatus Maven / Gradle / Ivy

/*
+--------------------------------------------------------------------------
|   mtons [#RELEASE_VERSION#]
|   ========================================
|   Copyright (c) 2014, 2015 mtons. All Rights Reserved
|   http://www.mtons.com
|
+---------------------------------------------------------------------------
*/
package mtons.lang;

/**
 * @author langhsu
 *
 */
public interface EntityStatus {
	// 忽略值
	int IGNORE = -1;

	int ZERO = 0;

	int STATUS_ENABLED = 0; // 启动
	int STATUS_DISABLED = 1; // 禁用

	// 删除状态
	int STATUS_REMOVED = 2;

	// 未审核
	int AUDIT_INIT = 0;

	// 审核通过
	int AUDIT_PASSED = 1;

	// 已驳回
	int AUDIT_REJECTED = 2;

	// 显示 - 正常
	int DISPLAY_NORMAL = 0;

	// 显示 - 隐藏
	int DISPLAY_NONE   = 1;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy