Constants.java 695 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package cn.efunbox.manage.base.util;
  2. /**
  3. * 定义常量类
  4. */
  5. public class Constants {
  6. public static String BIZ_CODE = "1008";
  7. /**
  8. * 请求微信时的错误标志字段
  9. */
  10. public static final String WEIXIN_ERROR_CODE_FIELD = "errcode";
  11. //系统任务
  12. public static int INTEGRAL_OP_TYPE_SYSTEM_TASK = 0;
  13. //用户奖赏
  14. public static int INTEGRAL_OP_TYPE_USER_REWARD = 1;
  15. //兑换奖品
  16. public static int INTEGRAL_OP_TYPE_PRIZE = 2;
  17. //团购
  18. public static int INTEGRAL_OP_TYPE_GROUP = 3;
  19. //用户登录
  20. public static int INTEGRAL_OP_TYPE_LOGIN = 4;
  21. //收入
  22. public static int INTEGRAL_TYPE_INCOME = 0;
  23. //支出
  24. public static int INTEGRAL_TYPE_OUTLAY = 1;
  25. }