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
f38ab601
Commit
f38ab601
authored
Jan 07, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
affcc055
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
1 deletion
+43
-1
RB_Examination_Student.cs
Edu.Model/Entity/Exam/RB_Examination_Student.cs
+6
-1
PaperModule.cs
Edu.Module.Exam/PaperModule.cs
+22
-0
AppletIndexController.cs
Edu.WebApi/Controllers/Applet/AppletIndexController.cs
+15
-0
No files found.
Edu.Model/Entity/Exam/RB_Examination_Student.cs
View file @
f38ab601
...
@@ -77,9 +77,14 @@ namespace Edu.Model.Entity.Exam
...
@@ -77,9 +77,14 @@ namespace Edu.Model.Entity.Exam
/// 考试状态(见枚举)
/// 考试状态(见枚举)
/// </summary>
/// </summary>
public
ExamTestStatusEnum
ExamStatus
{
get
;
set
;
}
public
ExamTestStatusEnum
ExamStatus
{
get
;
set
;
}
/// <summary>
/// 学员考试开始时间
/// </summary>
public
DateTime
?
ExamStartTime
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 考试结束时间
///
学员
考试结束时间
/// </summary>
/// </summary>
public
DateTime
?
ExamEndTime
{
get
;
set
;
}
public
DateTime
?
ExamEndTime
{
get
;
set
;
}
...
...
Edu.Module.Exam/PaperModule.cs
View file @
f38ab601
...
@@ -1625,6 +1625,28 @@ namespace Edu.Module.Exam
...
@@ -1625,6 +1625,28 @@ namespace Edu.Module.Exam
};
};
}
}
/// <summary>
/// 更新学员考试考试时间
/// </summary>
/// <param name="PublishId"></param>
/// <param name="GuestId"></param>
/// <param name="PaperId"></param>
/// <returns></returns>
public
virtual
bool
SetStuExamStartTimeModule
(
int
PublishId
,
int
GuestId
,
int
PaperId
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Examination_Student_ViewModel
.
ExamStartTime
),
DateTime
.
Now
},
};
List
<
WhereHelper
>
wheres
=
new
List
<
WhereHelper
>()
{
new
WhereHelper
(
nameof
(
RB_Examination_Student_ViewModel
.
PaperId
),
PaperId
),
new
WhereHelper
(
nameof
(
RB_Examination_Student_ViewModel
.
PublishId
),
PublishId
),
new
WhereHelper
(
nameof
(
RB_Examination_Student_ViewModel
.
GuestId
),
GuestId
),
};
bool
flag
=
examination_StudentRepository
.
Update
(
fileds
,
wheres
);
return
flag
;
}
/// <summary>
/// <summary>
/// 学员提交考试
/// 学员提交考试
...
...
Edu.WebApi/Controllers/Applet/AppletIndexController.cs
View file @
f38ab601
...
@@ -926,6 +926,21 @@ namespace Edu.WebApi.Controllers.Applet
...
@@ -926,6 +926,21 @@ namespace Edu.WebApi.Controllers.Applet
return
ApiResult
.
Success
(
data
:
data
);
return
ApiResult
.
Success
(
data
:
data
);
}
}
/// <summary>
/// 更新学员开始考试时间
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
SetStuExamStartTime
()
{
var
PublishId
=
base
.
ParmJObj
.
GetInt
(
"PublishId"
);
var
GuestId
=
base
.
ParmJObj
.
GetInt
(
"GuestId"
,
0
);
var
PaperId
=
base
.
ParmJObj
.
GetInt
(
"PaperId"
);
var
Exam_Student_Id
=
base
.
ParmJObj
.
GetInt
(
"Exam_Student_Id"
);
bool
flag
=
paperModule
.
SetStuExamStartTimeModule
(
PublishId
,
GuestId
,
PaperId
);
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
}
/// <summary>
/// <summary>
/// 学生提交答卷
/// 学生提交答卷
/// </summary>
/// </summary>
...
...
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