Constant.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. String CORP_POPULARIZE_CUSTOMER = "corp_popularize_customer";
  39. /**
  40. * 固定客服key
  41. */
  42. String CORP_FIXED_CUSTOMER = "corp_fixed_customer";
  43. /**
  44. * 实物分销配置
  45. */
  46. String EQUIPMENT_DISTRIBUTE_KEY = "equipment_distribute_key";
  47. String INITIAL_PASSWORD ="qwer1234";
  48. List<String> serviceKeys = List.of("service_img_set", "service_name_set");
  49. }