* +---------------------------------------------------------------------- */ namespace App\Http\Model\User; use App\Http\Model\BaseModel; /** * 用户快捷入口. */ class UserQuick extends BaseModel { /** * 表名. * @var string */ protected $table = 'user_quick'; /** * 主键. * @var string */ protected $primaryKey = 'id'; public function getPcMenuIdAttribute($value) { return $value ? json_decode($value, true) : []; } public function getAppMenuIdAttribute($value) { return $value ? json_decode($value, true) : []; } public function setStatisticsTypeAttribute($value) { $this->attributes['statistics_manage'] = is_array($value) ? json_encode($value) : ''; } public function getStatisticsTypeAttribute($value) { return $value ? json_decode($value, true) : []; } }