截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

IntegralGoodsEnum.php 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\enum;
  20. /**
  21. * 积分商品
  22. * Class IntegralGoodsEnum
  23. * @package app\common\enum
  24. */
  25. class IntegralGoodsEnum
  26. {
  27. // 兑换类型
  28. const TYPE_GOODS = 1; //商品
  29. const TYPE_BALANCE = 2; //红包(余额)
  30. // 商品状态
  31. const STATUS_SOLD_OUT = 0; //下架
  32. const STATUS_SHELVES = 1; //上架中
  33. // 删除状态
  34. const DEL_NORMAL = 0; // 正常
  35. const DEL_TRUE = 1; // 已删除
  36. // 兑换方式
  37. const EXCHANGE_WAY_INTEGRAL = 1; // 积分
  38. const EXCHANGE_WAY_HYBRID = 2; // 积分 + 金额
  39. // 物流类型
  40. const DELIVERY_NO_EXPRESS = 0; // 无需物流
  41. const DELIVERY_EXPRESS = 1; // 快递配送
  42. // 运费
  43. const EXPRESS_TYPE_FREE = 1; // 包邮
  44. const EXPRESS_TYPE_UNIFIED = 2; // 统一运费
  45. /**
  46. * @notes 兑换类型
  47. * @param bool $type
  48. * @return string|string[]
  49. * @author 段誉
  50. * @date 2022/2/25 17:48
  51. */
  52. public static function getTypeDesc($type = true)
  53. {
  54. $desc = [
  55. self::TYPE_GOODS => '商品',
  56. self::TYPE_BALANCE => '红包',
  57. ];
  58. if ($type === true) {
  59. return $desc;
  60. }
  61. return $desc[$type] ?? '';
  62. }
  63. }