org.treeleafj.xmax.constant.Status Maven / Gradle / Ivy
package org.treeleafj.xmax.constant;
/**
* 状态
*
* Created by leaf on 2017/5/3.
*/
public interface Status {
/**
* 状态-启用
*/
Integer STATUS_ENABLE = 1;
/**
* 状态-禁用
*/
Integer STATUS_DISABLE = 0;
}