animeic 2 жил өмнө
parent
commit
a9d870d37f

+ 11 - 0
cmd/config-linux.yaml

@@ -0,0 +1,11 @@
+port: 3000
+
+database:
+  name: mysql
+  # host: root:zyhd2022@tcp(177.7.0.13:3306)/exam?charset=utf8mb4&parseTime=True
+  host: root:zyhd2022@tcp(124.71.139.24:3306)/exam?charset=utf8mb4&parseTime=True
+
+  maxOpenConns: 100
+  maxIdleConns: 20
+
+

+ 0 - 4
dao/dao-exam-record.go

@@ -30,9 +30,6 @@ func AddExamRecord(er *entity.ExamRecord) *result.Result {
 	if err != nil {
 		return result.UNKNOW_ERROR.SetData(err)
 	}
-	fmt.Println("--------------------ADDTOKEN--------------------------------")
-	fmt.Printf("ID:%d\n", er.Id)
-	fmt.Printf("TOKEN:%s\n", uuId)
 	return result.SuccessResult(gin.H{
 		"id":    er.Id,
 		"token": uuId,
@@ -93,7 +90,6 @@ where er.id = ? and u.id = ? and e.delete_at is null `
 		av.OwnAnswer = avs[i].OwnAnswer
 		avs[i] = &av
 	}
-
 	return result.SuccessResult(gin.H{
 		"exam_detail": &t,
 		"subject":     &avs,