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
184d0b0b
Commit
184d0b0b
authored
Jul 28, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
23e0b3e3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
97 additions
and
116 deletions
+97
-116
ClassModule.cs
Edu.Module.Course/ClassModule.cs
+1
-1
RB_ClassRepository.cs
Edu.Repository/Course/RB_ClassRepository.cs
+1
-7
RB_Class_PlanRepository.cs
Edu.Repository/Course/RB_Class_PlanRepository.cs
+93
-106
ClassController.cs
Edu.WebApi/Controllers/Course/ClassController.cs
+2
-2
No files found.
Edu.Module.Course/ClassModule.cs
View file @
184d0b0b
...
...
@@ -1867,7 +1867,7 @@ namespace Edu.Module.Course
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Class_Plan_ViewModel
>
GetClassPlan
ModelRepository
(
RB_Class_Plan_ViewModel
query
)
public
List
<
RB_Class_Plan_ViewModel
>
GetClassPlan
EntityModule
(
RB_Class_Plan_ViewModel
query
)
{
return
class_PlanRepository
.
GetClassPlanModelRepository
(
query
);
}
...
...
Edu.Repository/Course/RB_ClassRepository.cs
View file @
184d0b0b
...
...
@@ -504,9 +504,6 @@ WHERE c.`Status`=0 and sog.`Status`=0 ");
}
/// <summary>
/// 获取app约课
/// </summary>
...
...
@@ -531,12 +528,9 @@ where a.`Status`=0 and a.IsSubscribe=1 and ClassStatus in(1,2)");
/// <returns></returns>
public
int
GetMaxClassNoPrefix
(
string
OpenTime
)
{
string
sql
=
$@"
select Max(ClassLetterNum) as ClassLetterNum from RB_Class where Status =0 and
OpenTime ='
{
OpenTime
}
'"
;
string
sql
=
$@"
SELECT Max(ClassLetterNum) AS ClassLetterNum FROM RB_Class WHERE Status =0 AND
OpenTime ='
{
OpenTime
}
'"
;
var
obj
=
ExecuteScalar
(
sql
);
return
obj
==
null
?
0
:
Convert
.
ToInt32
(
obj
);
}
}
}
\ No newline at end of file
Edu.Repository/Course/RB_Class_PlanRepository.cs
View file @
184d0b0b
This diff is collapsed.
Click to expand it.
Edu.WebApi/Controllers/Course/ClassController.cs
View file @
184d0b0b
...
...
@@ -1014,7 +1014,7 @@ namespace Edu.WebApi.Controllers.Course
}
//判断今天有课没有
var
planList
=
classModule
.
GetClassPlan
ModelRepository
(
new
RB_Class_Plan_ViewModel
var
planList
=
classModule
.
GetClassPlan
EntityModule
(
new
RB_Class_Plan_ViewModel
{
Group_Id
=
base
.
UserInfo
.
Group_Id
,
ClassId
=
list
.
FirstOrDefault
().
ClassId
,
...
...
@@ -1111,7 +1111,7 @@ namespace Edu.WebApi.Controllers.Course
var
orderGuestList
=
classModule
.
GetOrderGuestListModule
(
new
RB_Order_Guest_ViewModel
{
Group_Id
=
base
.
UserInfo
.
Group_Id
,
ClassId
=
exModel
.
ClassId
});
//判断今天有课没有
var
planList
=
classModule
.
GetClassPlan
ModelRepository
(
new
RB_Class_Plan_ViewModel
var
planList
=
classModule
.
GetClassPlan
EntityModule
(
new
RB_Class_Plan_ViewModel
{
Group_Id
=
base
.
UserInfo
.
Group_Id
,
ClassId
=
exModel
.
ClassId
,
...
...
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