<?php namespace App\Module\Friend\Enums; /** * 好友状态枚举 */ class FRIEND_STATUS { /** * 正常状态 */ const NORMAL = 1; /** * 特别关注 */ const SPECIAL = 2; /** * 黑名单 */ const BLACKLIST = 3; }