截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LiveGoodsEnum.php 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. class LiveGoodsEnum
  21. {
  22. // 产品来源类型
  23. const SOURCE_TYPE_GOODS = 0; // 商品库
  24. const SOURCE_TYPE_SELF = 1;// 自定义
  25. // 系统审核状态
  26. const SYS_AUDIT_STATUS_WAIT_PLATFORM = 0;
  27. const SYS_AUDIT_STATUS_WAIT_WECHAT = 1;
  28. const SYS_AUDIT_STATUS_SUCCESS = 2;
  29. const SYS_AUDIT_STATUS_FAIL = 3;
  30. // 微信审核状态
  31. const WX_AUDIT_STATUS_WAIT = 0;
  32. const WX_AUDIT_STATUS_ING = 1;
  33. const WX_AUDIT_STATUS_SUCCESS = 2;
  34. const WX_AUDIT_STATUS_FAIL = 3;
  35. // 商品价格类型 1:一口价 2:价格区间 3:显示折扣价
  36. const PRICE_ONE = 1;
  37. const PRICE_RANGE = 2;
  38. const PRICE_DISCOUNT = 3;
  39. /**
  40. * @notes 审核状态描述
  41. * @param bool $from
  42. * @return string|string[]
  43. * @author 段誉
  44. * @date 2023/2/15 18:49
  45. */
  46. public static function getAuditStatusDesc($from = true)
  47. {
  48. $desc = [
  49. self::SYS_AUDIT_STATUS_WAIT_PLATFORM => '待平台审核',
  50. self::SYS_AUDIT_STATUS_WAIT_WECHAT => '待微信审核',
  51. self::SYS_AUDIT_STATUS_SUCCESS => '审核通过',
  52. self::SYS_AUDIT_STATUS_FAIL => '审核未通过',
  53. ];
  54. if (true === $from) {
  55. return $desc;
  56. }
  57. return $desc[$from] ?? '未知';
  58. }
  59. /**
  60. * @notes 价格类型
  61. * @param bool $from
  62. * @return string|string[]
  63. * @author 段誉
  64. * @date 2023/2/16 21:54
  65. */
  66. public static function getPriceTypeDesc($from = true)
  67. {
  68. $desc = [
  69. self::PRICE_ONE => '一口价',
  70. self::PRICE_RANGE => '价格区间',
  71. self::PRICE_DISCOUNT => '显示价格',
  72. ];
  73. if (true === $from) {
  74. return $desc;
  75. }
  76. return $desc[$from] ?? '未知';
  77. }
  78. /**
  79. * @notes 商品来源类型描述
  80. * @param bool $from
  81. * @return string|string[]
  82. * @author 段誉
  83. * @date 2023/2/17 9:36
  84. */
  85. public static function getSourceTypeDesc($from = true)
  86. {
  87. $desc = [
  88. self::SOURCE_TYPE_GOODS => '商品库',
  89. self::SOURCE_TYPE_SELF => '自定义',
  90. ];
  91. if (true === $from) {
  92. return $desc;
  93. }
  94. return $desc[$from] ?? '未知';
  95. }
  96. /**
  97. * @notes 微信审核状态
  98. * @param bool $from
  99. * @return string|string[]
  100. * @author 段誉
  101. * @date 2023/2/20 10:32
  102. */
  103. public static function getWxAuditStatusDesc($from = true)
  104. {
  105. $desc = [
  106. self::WX_AUDIT_STATUS_WAIT => '微信未审核',
  107. self::WX_AUDIT_STATUS_ING => '微信审核中',
  108. self::WX_AUDIT_STATUS_SUCCESS => '微信审核通过',
  109. self::WX_AUDIT_STATUS_FAIL => '微信审核失败',
  110. ];
  111. if (true === $from) {
  112. return $desc;
  113. }
  114. return $desc[$from] ?? '';
  115. }
  116. }