public static function createByUserAndQuiz(\Eloquent $user, QuizModel $quiz)
 {
     return static::create(array('user_id' => $user->getKey(), 'quiz_id' => $quiz->getKey(), 'token' => time() . KRandom::getRandStr(8), 'result_text' => '', 'status' => '未开始'));
 }