'ID', 'admin_id' => '账户id', 'video_tutorials_id' => '视频教程id', 'is_complete' => '是否完整观看;1:是;0否', 'view_times' => '浏览时长', 'created_at' => 'Created At', 'updated_at' => 'Updated At', 'status' => '状态[-1:删除;0:禁用;1启用]', ]; } public static function addVideoTutorialsLog($params) { try { $model = new self(); $model->loadDefaultValues(); if (!$model->load($params, '') || !$model->save()) throw new \Exception($model->getErrorMessage()); return $model; } catch (\Exception $e) { self::$static_error = $e->getMessage(); return false; } } }