| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- package com.cyksj.common.constant;
- import java.util.List;
- /*
- *项目名: netflix
- *文件名: Constant
- *创建者: JavaZou
- *创建时间:2022/12/27 18:30
- */
- public interface Constant {
- /**
- * 一天秒数
- */
- Long DAY_MILLS = 86400000l;
- String DEFAULT_NAME = "银河用户";
- List<String> noOrderStatus = List.of("close", "noPayment");
- List<String> noOrderAllStatus = List.of("noPayment", "close", "refund");
- /**
- * 实物类型
- * 2实物、3潮玩好物
- */
- List<Integer> realGoodsType = List.of(2, 3);
- /**
- * 默认头像
- */
- String DEFAULT_HEAD_IMG = "https://cdn.sxfoundation.com/picture/f6ee11101c4f5f0bc48d88aca7a5dbfd-1666945673391.png";
- /**
- * 普通奖池积分配置key
- */
- String LOTTERY_POINTS_LIMIT = "lottery_points_limit";
- /**
- * 特定奖池平台配置key
- */
- String LOTTERY_SPECIFIC_GOODS = "lottery_specific_goods";
- /**
- * 特定订单有效时间
- */
- String LOTTERY_SPECIFIC_ORDER_EFFECTIVE_TIME = "lottery_specific_order_effective_time";
- String CORP_POPULARIZE_CUSTOMER = "corp_popularize_customer";
- /**
- * 固定客服key
- */
- String CORP_FIXED_CUSTOMER = "corp_fixed_customer";
- /**
- * 实物分销配置
- */
- String EQUIPMENT_DISTRIBUTE_KEY = "equipment_distribute_key";
- /**
- * 百度渠道 优惠券id
- */
- String BAIDU_POPULARIZE_COUPON_IDS = "baidu_popularize_coupon_ids";
- /**
- * 系统主账号商户配置key
- */
- String SYS_DEFAULT_SHOP_KEY = "sys_default_shop_key";
- String INITIAL_PASSWORD ="qwer1234";
- List<String> serviceKeys = List.of("service_img_set", "service_name_set");
- List<Long> dsGoodsIds = List.of(1l, 2l);
- List<String> payType = List.of("月", "季", "年");
- List<String> registerAccount = List.of("apple", "spotify", "google");
- String SUCCESS = "success";
- List<Long> CHAT_GPT_SKU_IDS = List.of(161l, 178l, 189l);
- List<Long> MIDJOURNEY_SKU_IDS = List.of(175l, 185l, 186l, 199l, 200l);
- /**
- * chatGPT Plus指定规格限购
- */
- String CHAT_GPT_PLUS_SKU_PURCHASE_LIMIT = "chat_gpt_plus_sku_purchase_limit";
- //发给商务
- String BUSINESS_CHANNEL_MSG = "你的渠道%s(id%s)分销数据已低于7天平均值的50%%,请尽快与渠道沟通。【银河录像局】";
- /**
- * midJourney课程赠送车票规格ids
- */
- String MIDJOURNEY_TICKET_SKU_IDS = "midJourney_ticket_sku_ids";
- /**
- * 授权扫码登录公众号
- */
- String QR_CODE_WX_APP_ID = "qr_code_wx_app_id";
- String CHANGE_GROUPS_TRIPS_ACCOUNT = "您好,您购买的%s,账号已替换,请登陆网站https://nf.video/查看最新账号密码【银河录像局】";
- String ACCOUNT_EXPIRY_MSG_TEMPLATE = "您好,您购买的%s,还有%s到期,请登陆网站https://nf.video/及时续费。【银河录像局】";
- String AMERICA_APPID_SECRET = "1990-01-01 朋友 aaa111 工作 aab112 父母 aac113";
- String ACCOUNT_DOUBLE_VERIFY_KEY = "account_double_verify_key";
- }
|