1234567891011121314151617181920212223242526 |
- <?php
- namespace app\dict\shop;
- /**
- * 店铺会员关注状态
- * Class ShopMemberIsFollowDict
- * @package app\dict\shop
- */
- class ShopMemberIsFollowDict
- {
- public const NOT_FOLLOW = 0;//未关注
- public const FOLLOWED = 1;//已关注
- /**
- * 入驻审核状态
- * @return array
- */
- public static function getStatus()
- {
- return [
- self::NOT_FOLLOW => get_lang('dict_site_shop_member.status_not_follow'),//未关注
- self::FOLLOWED => get_lang('dict_site_shop_member.status_followed'),//已关注
- ];
- }
- }
|