| 1 | <?php |
||
| 13 | class Friend extends User |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * flag,作用不明. |
||
| 17 | * |
||
| 18 | * @var int |
||
| 19 | */ |
||
| 20 | protected $flag; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * face,作用不明. |
||
| 24 | * |
||
| 25 | * @var int |
||
| 26 | */ |
||
| 27 | protected $face; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * 昵称. |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | protected $nick; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * 用户QQ号. |
||
| 38 | * |
||
| 39 | * @var int |
||
| 40 | */ |
||
| 41 | protected $qq; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * 是否是VIP. |
||
| 45 | * |
||
| 46 | * @var bool |
||
| 47 | */ |
||
| 48 | protected $isVip; |
||
| 49 | |||
| 50 | /** |
||
| 51 | * VIP等级. |
||
| 52 | * |
||
| 53 | * @var int |
||
| 54 | */ |
||
| 55 | protected $vipLevel; |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @var Category |
||
| 59 | */ |
||
| 60 | protected $category; |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @var string |
||
| 64 | */ |
||
| 65 | protected $markName; |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @param string $markName |
||
| 69 | */ |
||
| 70 | public function setMarkName($markName) |
||
| 74 | |||
| 75 | /** |
||
| 76 | * @return string |
||
| 77 | */ |
||
| 78 | public function getMarkName() |
||
| 82 | |||
| 83 | /** |
||
| 84 | * @return int |
||
| 85 | */ |
||
| 86 | public function getQq() |
||
| 90 | |||
| 91 | /** |
||
| 92 | * @return bool |
||
| 93 | */ |
||
| 94 | public function isVip() |
||
| 98 | |||
| 99 | /** |
||
| 100 | * @return int |
||
| 101 | */ |
||
| 102 | public function getVipLevel() |
||
| 106 | |||
| 107 | /** |
||
| 108 | * @return Category |
||
| 109 | */ |
||
| 110 | public function getCategory() |
||
| 114 | |||
| 115 | /** |
||
| 116 | * @return int |
||
| 117 | */ |
||
| 118 | public function getFlag() |
||
| 122 | |||
| 123 | /** |
||
| 124 | * @return int |
||
| 125 | */ |
||
| 126 | public function getFace() |
||
| 130 | |||
| 131 | /** |
||
| 132 | * @param int $face |
||
| 133 | */ |
||
| 134 | public function setFace($face) |
||
| 138 | |||
| 139 | /** |
||
| 140 | * @return string |
||
| 141 | */ |
||
| 142 | public function getNick() |
||
| 146 | |||
| 147 | /** |
||
| 148 | * @param string $nick |
||
| 149 | */ |
||
| 150 | public function setNick($nick) |
||
| 154 | |||
| 155 | /** |
||
| 156 | * @param int $qq |
||
| 157 | */ |
||
| 158 | public function setQq($qq) |
||
| 162 | |||
| 163 | /** |
||
| 164 | * @param int $flag |
||
| 165 | */ |
||
| 166 | public function setFlag($flag) |
||
| 170 | |||
| 171 | /** |
||
| 172 | * @param bool $isVip |
||
| 173 | */ |
||
| 174 | public function setIsVip($isVip) |
||
| 178 | |||
| 179 | /** |
||
| 180 | * @param int $vipLevel |
||
| 181 | */ |
||
| 182 | public function setVipLevel($vipLevel) |
||
| 186 | |||
| 187 | /** |
||
| 188 | * @param Category $category |
||
| 189 | */ |
||
| 190 | public function setCategory($category) |
||
| 194 | } |
||
| 195 |