package com.atguigu.constant;
/**
* 状态常量,启用或者禁用
*/
public class StatusConstant {
// 启用为1
public static final Integer ENABLE = 1;
// 禁用为0
public static final Integer DISABLE = 0;
}