Constant.java 674 B

123456789101112131415161718192021222324252627282930313233
  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. }