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
44d4683d
Commit
44d4683d
authored
Feb 09, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
查询修改
parent
01d0e242
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
MarketConsultantModule.cs
Edu.Module.Customer/MarketConsultantModule.cs
+3
-2
UserCenterController.cs
Edu.WebApi/Controllers/User/UserCenterController.cs
+1
-1
No files found.
Edu.Module.Customer/MarketConsultantModule.cs
View file @
44d4683d
...
...
@@ -1333,14 +1333,15 @@ namespace Edu.Module.Customer
/// <param name="StartTime"></param>
/// <param name="EndTime"></param>
/// <returns></returns>
public
object
MarketChannelStaticModule
(
string
StartTime
,
string
EndTime
)
public
object
MarketChannelStaticModule
(
List
<
int
>
queryEmployeeList
,
string
StartTime
,
string
EndTime
)
{
List
<
object
>
list
=
new
List
<
object
>();
var
channelList
=
channelRepository
.
GetChannelListRepository
(
new
RB_Channel_Extend
()
{
});
var
dataList
=
studentRepository
.
GetStudentChannelStaticRepository
(
new
RB_Student_ViewModel
()
{
StartTime
=
StartTime
,
EndTime
=
EndTime
EndTime
=
EndTime
,
CreateIds
=
queryEmployeeList
});
if
(
channelList
!=
null
&&
channelList
.
Count
>
0
)
{
...
...
Edu.WebApi/Controllers/User/UserCenterController.cs
View file @
44d4683d
...
...
@@ -2853,7 +2853,7 @@ namespace Edu.WebApi.Controllers.User
{
qEmpIds
=
string
.
Join
(
","
,
empList
);
}
var
data
=
marketConsultantModule
.
MarketChannelStaticModule
(
startTime
,
endTime
);
var
data
=
marketConsultantModule
.
MarketChannelStaticModule
(
empList
,
startTime
,
endTime
);
return
ApiResult
.
Success
(
data
:
data
);
}
#
endregion
...
...
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