123456789101112131415161718192021222324252627 |
- <?php
- namespace App\Models;
- class User extends SoftBaseModel
- {
- /**
- * 性别 0:未知
- * @var integer
- */
- const WX_SEX_0 = 0;
- /**
- * 性别 1:男性
- * @var integer
- */
- const WX_SEX_1 = 1;
- /**
- * 性别 2:女性
- * @var integer
- */
- const WX_SEX_2 = 2;
-
- public function getThirdUpHeadimgAttribute()
- {
- return isset($this->attributes['third_up_headimg']) ? config('console.pic_path').$this->attributes['third_up_headimg'] : '';
- }
- }
|