Constant.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. /**
  48. * 百度渠道 优惠券id
  49. */
  50. String BAIDU_POPULARIZE_COUPON_IDS = "baidu_popularize_coupon_ids";
  51. /**
  52. * 系统主账号商户配置key
  53. */
  54. String SYS_DEFAULT_SHOP_KEY = "sys_default_shop_key";
  55. String INITIAL_PASSWORD ="qwer1234";
  56. List<String> serviceKeys = List.of("service_img_set", "service_name_set");
  57. List<Long> dsGoodsIds = List.of(1l, 2l);
  58. List<String> payType = List.of("月", "季", "年");
  59. List<String> registerAccount = List.of("apple", "spotify", "google");
  60. String SUCCESS = "success";
  61. List<Long> CHAT_GPT_SKU_IDS = List.of(161l, 178l, 189l);
  62. List<Long> MIDJOURNEY_SKU_IDS = List.of(175l, 185l, 186l, 199l, 200l);
  63. /**
  64. * chatGPT Plus指定规格限购
  65. */
  66. String CHAT_GPT_PLUS_SKU_PURCHASE_LIMIT = "chat_gpt_plus_sku_purchase_limit";
  67. //发给商务
  68. String BUSINESS_CHANNEL_MSG = "你的渠道%s(id%s)分销数据已低于7天平均值的50%%,请尽快与渠道沟通。【银河录像局】";
  69. /**
  70. * midJourney课程赠送车票规格ids
  71. */
  72. String MIDJOURNEY_TICKET_SKU_IDS = "midJourney_ticket_sku_ids";
  73. /**
  74. * 授权扫码登录公众号
  75. */
  76. String QR_CODE_WX_APP_ID = "qr_code_wx_app_id";
  77. String CHANGE_GROUPS_TRIPS_ACCOUNT = "您好,您购买的%s,账号已替换,请登陆网站https://nf.video/查看最新账号密码【银河录像局】";
  78. String ACCOUNT_EXPIRY_MSG_TEMPLATE = "您好,您购买的%s,还有%s到期,请登陆网站https://nf.video/及时续费。【银河录像局】";
  79. String AMERICA_APPID_SECRET = "1990-01-01 朋友 aaa111 工作 aab112 父母 aac113";
  80. String ACCOUNT_DOUBLE_VERIFY_KEY = "account_double_verify_key";
  81. }