截流自动化的商城平台
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.

DistributionMemberApply.php 1019B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace app\common\model\distribution;
  3. use app\common\basics\Models;
  4. class DistributionMemberApply extends Models
  5. {
  6. /**
  7. * 分销会员申请状态
  8. */
  9. const STATUS_WAIT_AUDIT = 0; //待审核
  10. const STATUS_AUDIT_SUCCESS = 1; //审核通过
  11. const STATUS_AUDIT_ERROR = 2; //审核拒绝
  12. /**
  13. * @Notes: 关联用户模型
  14. * @Author: 张无忌
  15. */
  16. public function user()
  17. {
  18. return $this->hasOne('app\common\model\user\User', 'id', 'user_id');
  19. }
  20. /**
  21. * @Notes: 分销会员申请状态
  22. * @param bool $status
  23. * @return array|mixed|string
  24. */
  25. public static function getApplyStatus($status = true)
  26. {
  27. $desc = [
  28. self::STATUS_WAIT_AUDIT => '待审核',
  29. self::STATUS_AUDIT_SUCCESS => '审核通过',
  30. self::STATUS_AUDIT_ERROR => '审核拒绝',
  31. ];
  32. if ($status === true) {
  33. return $desc;
  34. }
  35. return $desc[$status] ?? '未知';
  36. }
  37. }