Constant.java 1003 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.cyksj.common.constant;
  2. import java.util.List;
  3. /*
  4. *项目名: netflix
  5. *文件名: Constant
  6. *创建者: JavaZou
  7. *创建时间:2022/12/27 18:30
  8. */
  9. public interface Constant {
  10. /**
  11. * 一天秒数
  12. */
  13. Long DAY_MILLS = 86400000l;
  14. String DEFAULT_NAME = "银河用户";
  15. List<String> noOrderStatus = List.of("close", "noPayment");
  16. List<String> noOrderAllStatus = List.of("noPayment", "close", "refund");
  17. /**
  18. * 实物类型
  19. * 2实物、3潮玩好物
  20. */
  21. List<Integer> realGoodsType = List.of(2, 3);
  22. /**
  23. * 默认头像
  24. */
  25. String DEFAULT_HEAD_IMG = "https://cdn.sxfoundation.com/picture/f6ee11101c4f5f0bc48d88aca7a5dbfd-1666945673391.png";
  26. /**
  27. * 普通奖池积分配置key
  28. */
  29. String LOTTERY_POINTS_LIMIT = "lottery_points_limit";
  30. /**
  31. * 特定奖池平台配置key
  32. */
  33. String LOTTERY_SPECIFIC_GOODS = "lottery_specific_goods";
  34. /**
  35. * 特定订单有效时间
  36. */
  37. String LOTTERY_SPECIFIC_ORDER_EFFECTIVE_TIME = "lottery_specific_order_effective_time";
  38. }