| 123456789101112131415161718192021222324252627282930313233 |
- package com.ydtech.modules.admin.constants;
- /**
- * 用户常量信息
- *
- * @author ruoyi
- */
- public class UserConstants
- {
- /** 校验返回结果码 */
- public final static String UNIQUE = "0";
- public final static String NOT_UNIQUE = "1";
- /** 是否删除 */
- public final static Integer DEL = 1;
- public final static Integer NOT_DEL = 0;
- /** 加投操作日志类型 */
- public final static Integer OPT_TYPE_0 = 0; // 新增加投
- public final static Integer OPT_TYPE_1 = 1; // 修改加投
- /** 二维码配置类型 */
- public final static Integer CONFIG_TYPE_0 = 0; // url
- public final static Integer CONFIG_TYPE_1 = 1; // base
- public final static Integer CONFIG_TYPE_2 = 2; // h5
- /**
- * 分页长度限制
- */
- public static final int PAGE_MIN_LENGTH = 1;
- public static final int PAGE_MAX_LENGTH = 100;
- }
|