| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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";
- String INITIAL_PASSWORD ="qwer1234";
- List<String> serviceKeys = List.of("service_img_set", "service_name_set");
- }
|