浏览代码

fix add user select bug

animeic 2 年之前
父节点
当前提交
c1753387e9
共有 2 个文件被更改,包括 4 次插入0 次删除
  1. 二进制
      cmd/__debug_bin
  2. 4 0
      dao/dao-user.go

二进制
cmd/__debug_bin


+ 4 - 0
dao/dao-user.go

@@ -139,6 +139,10 @@ func InsertUser(user *entity.User, userType string) *result.Result {
 		if err != nil && err != sql.ErrNoRows {
 			return result.UNKNOW_ERROR.SetMsg(err.Error())
 		}
+		// count == examId []
+		if len(count) == 0 {
+			return result.SUCCESS.SetData(id)
+		}
 
 		// 6、添加考试记录
 		sqlStr = "insert into exam_record(create_at, update_at, user_id, exam_id,status) values (?,?,?,?,?)"