package com.iailab.module.data.common.utils; /** * 絽檎�� * * @author Mark sunlightcs@gmail.com */ public class Constant { /** 莇�膾х�����ID */ public static final String SUPER_ADMIN = "1"; /** * 綵���蕁窮�� */ public static final String PAGE = "page"; /** * 罸馹究�丞ず莅医��� */ public static final String LIMIT = "limit"; /** * ��綺鎕�罧� */ public static final String ORDER_FIELD = "sidx"; /** * ��綺�婧� */ public static final String ORDER = "order"; /** * ��綺� */ public static final String ASC = "asc"; /** * ����膠糸�� * * @author chenshun * @email sunlightcs@gmail.com * @date 2016綛�11��15�� 筝���1:24:29 */ public enum MenuType { /** * ��� */ CATALOG(0), /** * ���� */ MENU(1), /** * ���� */ BUTTON(2); private int value; MenuType(int value) { this.value = value; } public int getValue() { return value; } } /** * 絎��銀算�∞�倶�� * * @author chenshun * @email sunlightcs@gmail.com * @date 2016綛�12��3�� 筝���12:07:22 */ public enum ScheduleStatus { /** * 罩e幻 */ NORMAL(0), /** * ���� */ PAUSE(1); private int value; ScheduleStatus(int value) { this.value = value; } public int getValue() { return value; } } /** * 篋����≦�� */ public enum CloudService { /** * 筝���篋� */ QINIU(1), /** * �翠��篋� */ ALIYUN(2), /** * �乗�篋� */ QCLOUD(3); private int value; CloudService(int value) { this.value = value; } public int getValue() { return value; } } }