*/ class FansFollowEnum extends BaseEnum { const ON = 1; const OFF = -1; /** * @return string[] */ public static function getMap(): array { return [ self::ON => '已关注', self::OFF => '未关注', ]; } }