UserConstants.java 882 B

123456789101112131415161718192021222324252627282930313233
  1. package com.ydtech.modules.admin.constants;
  2. /**
  3. * 用户常量信息
  4. *
  5. * @author ruoyi
  6. */
  7. public class UserConstants
  8. {
  9. /** 校验返回结果码 */
  10. public final static String UNIQUE = "0";
  11. public final static String NOT_UNIQUE = "1";
  12. /** 是否删除 */
  13. public final static Integer DEL = 1;
  14. public final static Integer NOT_DEL = 0;
  15. /** 加投操作日志类型 */
  16. public final static Integer OPT_TYPE_0 = 0; // 新增加投
  17. public final static Integer OPT_TYPE_1 = 1; // 修改加投
  18. /** 二维码配置类型 */
  19. public final static Integer CONFIG_TYPE_0 = 0; // url
  20. public final static Integer CONFIG_TYPE_1 = 1; // base
  21. public final static Integer CONFIG_TYPE_2 = 2; // h5
  22. /**
  23. * 分页长度限制
  24. */
  25. public static final int PAGE_MIN_LENGTH = 1;
  26. public static final int PAGE_MAX_LENGTH = 100;
  27. }