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
8beb4a17
Commit
8beb4a17
authored
Mar 18, 2022
by
liudong1993
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/Kui2/education
parents
089c27fc
852da6e2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
9 deletions
+13
-9
CourseExamModule.cs
Edu.Module.Exam/CourseExamModule.cs
+1
-1
SchoolModule.cs
Edu.Module.User/SchoolModule.cs
+1
-1
RB_QuestionRepository.cs
Edu.Repository/Question/RB_QuestionRepository.cs
+0
-1
UserController.cs
Edu.WebApi/Controllers/User/UserController.cs
+11
-6
No files found.
Edu.Module.Exam/CourseExamModule.cs
View file @
8beb4a17
...
@@ -850,7 +850,7 @@ namespace Edu.Module.Exam
...
@@ -850,7 +850,7 @@ namespace Edu.Module.Exam
Common
.
Plugin
.
LogHelper
.
Write
(
ex
,
"GetAppQuestionCategoryListModule_listening:"
+
Common
.
Plugin
.
JsonHelper
.
Serialize
(
item
));
Common
.
Plugin
.
LogHelper
.
Write
(
ex
,
"GetAppQuestionCategoryListModule_listening:"
+
Common
.
Plugin
.
JsonHelper
.
Serialize
(
item
));
}
}
}
}
if
(
item
.
QuestionTypeKey
!=
"listening"
&&
item
.
QuestionTypeKey
!=
"reading-comprehensio"
&&
!
string
.
IsNullOrEmpty
(
item
.
Answer
.
ToString
()))
if
(
item
.
QuestionTypeKey
!=
"listening"
&&
item
.
QuestionTypeKey
!=
"reading-comprehensio"
&&
item
.
Answer
!=
null
&&
!
string
.
IsNullOrEmpty
(
item
.
Answer
.
ToString
()))
{
{
try
try
{
{
...
...
Edu.Module.User/SchoolModule.cs
View file @
8beb4a17
...
@@ -34,7 +34,7 @@ namespace Edu.Module.User
...
@@ -34,7 +34,7 @@ namespace Edu.Module.User
/// <returns></returns>
/// <returns></returns>
public
List
<
RB_School_ViewModel
>
GetSchoolListModule
(
RB_School_ViewModel
query
)
public
List
<
RB_School_ViewModel
>
GetSchoolListModule
(
RB_School_ViewModel
query
)
{
{
return
schoolRepository
.
GetSchoolListRepository
(
query
);
;
return
schoolRepository
.
GetSchoolListRepository
(
query
);
}
}
/// <summary>
/// <summary>
...
...
Edu.Repository/Question/RB_QuestionRepository.cs
View file @
8beb4a17
...
@@ -213,7 +213,6 @@ WHERE 1=1
...
@@ -213,7 +213,6 @@ WHERE 1=1
{
{
builder
.
AppendFormat
(
" ORDER BY A.{0} ASC "
,
nameof
(
RB_Question_ViewModel
.
SortNum
));
builder
.
AppendFormat
(
" ORDER BY A.{0} ASC "
,
nameof
(
RB_Question_ViewModel
.
SortNum
));
}
}
return
GetPage
<
RB_Question_ViewModel
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
return
GetPage
<
RB_Question_ViewModel
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
}
}
}
...
...
Edu.WebApi/Controllers/User/UserController.cs
View file @
8beb4a17
...
@@ -329,9 +329,6 @@ namespace Edu.WebApi.Controllers.User
...
@@ -329,9 +329,6 @@ namespace Edu.WebApi.Controllers.User
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
}
}
/// <summary>
/// <summary>
/// 获取学校列表
/// 获取学校列表
/// </summary>
/// </summary>
...
@@ -340,9 +337,17 @@ namespace Edu.WebApi.Controllers.User
...
@@ -340,9 +337,17 @@ namespace Edu.WebApi.Controllers.User
[
Microsoft
.
AspNetCore
.
Authorization
.
AllowAnonymous
]
[
Microsoft
.
AspNetCore
.
Authorization
.
AllowAnonymous
]
public
ApiResult
GetDropSchoolList
()
public
ApiResult
GetDropSchoolList
()
{
{
var
Group_Id
=
base
.
ParmJObj
.
GetInt
(
"Group_Id"
,
100000
);
var
query
=
new
RB_School_ViewModel
()
var
query
=
Common
.
Plugin
.
JsonHelper
.
DeserializeObject
<
RB_School_ViewModel
>(
RequestParm
.
Msg
.
ToString
());
{
query
.
Group_Id
=
Group_Id
;
SName
=
base
.
ParmJObj
.
GetStringValue
(
"SName"
),
SAddress
=
base
.
ParmJObj
.
GetStringValue
(
"SAddress"
),
SLinkTel
=
base
.
ParmJObj
.
GetStringValue
(
"SLinkTel"
),
SDomain
=
base
.
ParmJObj
.
GetStringValue
(
"SDomain"
),
Remark
=
base
.
ParmJObj
.
GetStringValue
(
"Remark"
),
SId
=
base
.
ParmJObj
.
GetInt
(
"SId"
),
QSIds
=
base
.
ParmJObj
.
GetStringValue
(
"QSIds"
),
};
query
.
Group_Id
=
base
.
ParmJObj
.
GetInt
(
"Group_Id"
,
100000
);
var
list
=
schoolModule
.
GetSchoolListModule
(
query
);
var
list
=
schoolModule
.
GetSchoolListModule
(
query
);
return
ApiResult
.
Success
(
data
:
list
);
return
ApiResult
.
Success
(
data
:
list
);
}
}
...
...
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