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
ecba3c29
Commit
ecba3c29
authored
Nov 23, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
ebc4cd93
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
RB_Customer_TaskDetails_Extend.cs
...odel/ViewModel/Customer/RB_Customer_TaskDetails_Extend.cs
+5
-0
RB_Customer_TaskDetailsRepository.cs
Edu.Repository/Customer/RB_Customer_TaskDetailsRepository.cs
+2
-2
RB_Customer_TaskRepository.cs
Edu.Repository/Customer/RB_Customer_TaskRepository.cs
+2
-2
No files found.
Edu.Model/ViewModel/Customer/RB_Customer_TaskDetails_Extend.cs
View file @
ecba3c29
...
...
@@ -14,5 +14,10 @@ namespace Edu.Model.ViewModel.Customer
/// 任务编号【逗号分割】
/// </summary>
public
string
QTaskIds
{
get
;
set
;
}
/// <summary>
/// 关联目标名称
/// </summary>
public
string
TargetName
{
get
;
set
;
}
}
}
Edu.Repository/Customer/RB_Customer_TaskDetailsRepository.cs
View file @
ecba3c29
...
...
@@ -21,8 +21,8 @@ namespace Edu.Repository.Customer
{
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
SELECT A.*
FROM RB_Customer_TaskDetails
SELECT A.*
,IFNULL(B.CourseName,'') AS TargetName
FROM RB_Customer_TaskDetails
AS A LEFT JOIN rb_course AS B ON (A.TargetId=B.CourseId AND A.TaskType=1)
WHERE 1=1
"
);
if
(
query
!=
null
)
...
...
Edu.Repository/Customer/RB_Customer_TaskRepository.cs
View file @
ecba3c29
...
...
@@ -28,7 +28,7 @@ namespace Edu.Repository.Customer
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
SELECT A.*
FROM RB_Customer_Task
FROM RB_Customer_Task
AS A
WHERE 1=1
"
);
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Customer_Task_Extend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
...
...
@@ -44,7 +44,7 @@ WHERE 1=1
parameters
.
Add
(
"TaskName"
,
"%"
+
query
.
TaskName
.
Trim
()
+
"%"
);
}
}
return
GetPage
<
RB_Customer_Task_Extend
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
()).
ToList
();
return
GetPage
<
RB_Customer_Task_Extend
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
()
,
parameters
).
ToList
();
}
}
}
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