Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
98c1e4b0
Commit
98c1e4b0
authored
Mar 10, 2022
by
liudong1993
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/Kui2/education
parents
9a6a9e70
a91c5ee9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
102 additions
and
11 deletions
+102
-11
RB_Student_ExamDetails.cs
Edu.Model/Entity/Exam/RB_Student_ExamDetails.cs
+1
-1
CourseExamModule.cs
Edu.Module.Exam/CourseExamModule.cs
+15
-10
RB_Student_ExamRepository.cs
Edu.Repository/Exam/RB_Student_ExamRepository.cs
+37
-0
ExamController.cs
Edu.WebApi/Controllers/Exam/ExamController.cs
+49
-0
No files found.
Edu.Model/Entity/Exam/RB_Student_ExamDetails.cs
View file @
98c1e4b0
...
@@ -25,7 +25,7 @@ namespace Edu.Model.Entity.Exam
...
@@ -25,7 +25,7 @@ namespace Edu.Model.Entity.Exam
/// <summary>
/// <summary>
/// 问题编号
/// 问题编号
/// </summary>
/// </summary>
public
int
?
QuestionId
{
get
;
set
;
}
public
int
QuestionId
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 问题名称(题干)
/// 问题名称(题干)
...
...
Edu.Module.Exam/CourseExamModule.cs
View file @
98c1e4b0
...
@@ -968,15 +968,7 @@ namespace Edu.Module.Exam
...
@@ -968,15 +968,7 @@ namespace Edu.Module.Exam
return
result
;
return
result
;
}
}
/// <summary>
/// 判断是否存在学生练习
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public
bool
ExistsStudentPracticeModule
(
RB_Student_Practice_Extend
model
)
{
return
false
;
}
/// <summary>
/// <summary>
/// 新增修改学员练习
/// 新增修改学员练习
...
@@ -1010,6 +1002,19 @@ namespace Edu.Module.Exam
...
@@ -1010,6 +1002,19 @@ namespace Edu.Module.Exam
return
flag
;
return
flag
;
}
}
/// <summary>
/// 学员开始测试
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public
bool
SetStudentStartExamModule
(
RB_Student_Exam_Extend
model
)
{
model
.
Times
=
student_ExamRepository
.
GetStudentExamTimesRepository
(
model
);
var
newId
=
student_ExamRepository
.
Insert
(
model
);
model
.
Id
=
newId
;
return
newId
>
0
;
}
/// <summary>
/// <summary>
/// 新增修改学员考试练习
/// 新增修改学员考试练习
/// </summary>
/// </summary>
...
@@ -1022,7 +1027,7 @@ namespace Edu.Module.Exam
...
@@ -1022,7 +1027,7 @@ namespace Edu.Module.Exam
{
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
{
nameof
(
RB_Student_Exam_Extend
.
EndTime
),
model
.
EndTime
}
};
};
flag
=
student_ExamRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Student_Exam_Extend
.
Id
),
model
.
Id
));
flag
=
student_ExamRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Student_Exam_Extend
.
Id
),
model
.
Id
));
}
}
...
...
Edu.Repository/Exam/RB_Student_ExamRepository.cs
View file @
98c1e4b0
...
@@ -85,5 +85,42 @@ WHERE 1=1
...
@@ -85,5 +85,42 @@ WHERE 1=1
}
}
return
Get
<
RB_Student_Exam_Extend
>(
builder
.
ToString
()).
ToList
();
return
Get
<
RB_Student_Exam_Extend
>(
builder
.
ToString
()).
ToList
();
}
}
/// <summary>
/// 计算学员的考试次数
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
int
GetStudentExamTimesRepository
(
RB_Student_Exam_Extend
query
)
{
int
result
=
0
;
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@" SELECT COUNT(1) FROM RB_Student_Exam AS A WHERE 1=1 "
);
if
(
query
!=
null
)
{
if
(
query
.
GroupId
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Student_Exam_Extend
.
GroupId
),
query
.
GroupId
);
}
if
(
query
.
StudentId
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Student_Exam_Extend
.
StudentId
),
query
.
StudentId
);
}
if
(
query
.
BankId
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Student_Exam_Extend
.
BankId
),
query
.
BankId
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
QBankIds
))
{
builder
.
AppendFormat
(
@" AND A.{0} IN({1}) "
,
nameof
(
RB_Student_Exam_Extend
.
BankId
),
query
.
QBankIds
);
}
}
var
obj
=
base
.
ExecuteScalar
(
builder
.
ToString
());
if
(
obj
!=
null
)
{
Int32
.
TryParse
(
obj
.
ToString
(),
out
result
);
}
return
result
+
1
;
}
}
}
}
}
Edu.WebApi/Controllers/Exam/ExamController.cs
View file @
98c1e4b0
...
@@ -1127,6 +1127,27 @@ namespace Edu.WebApi.Controllers.Exam
...
@@ -1127,6 +1127,27 @@ namespace Edu.WebApi.Controllers.Exam
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
}
}
/// <summary>
/// 学员开始考试
/// </summary>
/// <returns></returns>
[
HttpPost
]
[
AllowRepeat
]
public
ApiResult
SetStudentStartExam
()
{
var
model
=
new
RB_Student_Exam_Extend
()
{
Id
=
base
.
ParmJObj
.
GetInt
(
"Id"
),
BankId
=
base
.
ParmJObj
.
GetInt
(
"BankId"
),
StudentId
=
base
.
ParmJObj
.
GetInt
(
"StudentId"
),
StartTime
=
base
.
ParmJObj
.
GetDateTime
(
"StartTime"
),
CreateTime
=
DateTime
.
Now
,
GroupId
=
base
.
ParmJObj
.
GetInt
(
"GroupId"
)
};
bool
flag
=
courseExamModule
.
SetStudentStartExamModule
(
model
);
return
flag
?
ApiResult
.
Success
(
data
:
model
)
:
ApiResult
.
Failed
();
}
/// <summary>
/// <summary>
/// 新增修改学员考试
/// 新增修改学员考试
/// </summary>
/// </summary>
...
@@ -1147,6 +1168,34 @@ namespace Edu.WebApi.Controllers.Exam
...
@@ -1147,6 +1168,34 @@ namespace Edu.WebApi.Controllers.Exam
CreateTime
=
DateTime
.
Now
,
CreateTime
=
DateTime
.
Now
,
GroupId
=
base
.
ParmJObj
.
GetInt
(
"GroupId"
)
GroupId
=
base
.
ParmJObj
.
GetInt
(
"GroupId"
)
};
};
model
.
ExamDetailsList
=
new
List
<
RB_Student_ExamDetails_Extend
>();
string
examDetailsList
=
base
.
ParmJObj
.
GetStringValue
(
"ExamDetailsList"
);
if
(!
string
.
IsNullOrEmpty
(
examDetailsList
))
{
JArray
jarray
=
JArray
.
Parse
(
examDetailsList
);
if
(
jarray
!=
null
&&
jarray
.
Count
>
0
)
{
foreach
(
var
jItem
in
jarray
)
{
JObject
sObj
=
JObject
.
Parse
(
jItem
.
ToString
());
var
sModel
=
new
RB_Student_ExamDetails_Extend
()
{
DetailId
=
sObj
.
GetInt
(
"DetailId"
),
ExamId
=
sObj
.
GetInt
(
"ExamId"
),
QuestionId
=
sObj
.
GetInt
(
"QuestionId"
),
Title
=
sObj
.
GetStringValue
(
"Title"
),
QuestionContent
=
sObj
.
GetStringValue
(
"QuestionContent"
),
QuestionTypeId
=
sObj
.
GetInt
(
"QuestionTypeId"
),
QuestionTypeKey
=
sObj
.
GetStringValue
(
"QuestionTypeKey"
),
Answer
=
sObj
.
GetStringValue
(
"Answer"
),
AnswerParse
=
sObj
.
GetStringValue
(
"AnswerParse"
),
IsAnswer
=
sObj
.
GetInt
(
"IsAnswer"
),
IsWrong
=
sObj
.
GetInt
(
"IsWrong"
),
};
model
.
ExamDetailsList
.
Add
(
sModel
);
}
}
}
bool
flag
=
courseExamModule
.
SetStudentExamModule
(
model
);
bool
flag
=
courseExamModule
.
SetStudentExamModule
(
model
);
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment