ShopMemberIsFollowDict.php 576 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace app\dict\shop;
  3. /**
  4. * 店铺会员关注状态
  5. * Class ShopMemberIsFollowDict
  6. * @package app\dict\shop
  7. */
  8. class ShopMemberIsFollowDict
  9. {
  10. public const NOT_FOLLOW = 0;//未关注
  11. public const FOLLOWED = 1;//已关注
  12. /**
  13. * 入驻审核状态
  14. * @return array
  15. */
  16. public static function getStatus()
  17. {
  18. return [
  19. self::NOT_FOLLOW => get_lang('dict_site_shop_member.status_not_follow'),//未关注
  20. self::FOLLOWED => get_lang('dict_site_shop_member.status_followed'),//已关注
  21. ];
  22. }
  23. }