| 123456789101112131415161718192021222324252627282930313233 |
- 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";
- }
|