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
170b242e
Commit
170b242e
authored
Dec 20, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
9cf9fe54
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
107 additions
and
0 deletions
+107
-0
RB_Bonus_PlanRepository.cs
Edu.Repository/Sell/RB_Bonus_PlanRepository.cs
+67
-0
RB_Bouns_PlanDetailRepository.cs
Edu.Repository/Sell/RB_Bouns_PlanDetailRepository.cs
+40
-0
No files found.
Edu.Repository/Sell/RB_Bonus_PlanRepository.cs
0 → 100644
View file @
170b242e
using
Edu.Common.Enum
;
using
Edu.Model.Entity.Sell
;
using
Edu.Model.ViewModel.Sell
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
using
System.Linq
;
namespace
Edu.Repository.Sell
{
/// <summary>
/// 课程顾问、市场达标奖金配置仓储层
/// </summary>
public
class
RB_Bonus_PlanRepository
:
BaseRepository
<
RB_Bonus_Plan
>
{
/// <summary>
/// 获取课程顾问、市场达标奖金配置分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Bonus_PlanExtend
>
GetBounsPlanDetailListRepository
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Bonus_PlanExtend
query
)
{
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
SELECT A.*
FROM RB_Bonus_Plan AS A
WHERE 1=1
"
);
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Bonus_PlanExtend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Bonus_PlanExtend
.
Group_Id
),
query
.
Group_Id
);
}
}
return
GetPage
<
RB_Bonus_PlanExtend
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
()).
ToList
();
}
/// <summary>
/// 获取课程顾问、市场达标奖金配置列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Bonus_PlanExtend
>
GetBounsPlanDetailListRepository
(
RB_Bonus_PlanExtend
query
)
{
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
SELECT A.*
FROM RB_Bonus_Plan AS A
WHERE 1=1
"
);
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Bonus_PlanExtend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Bonus_PlanExtend
.
Group_Id
),
query
.
Group_Id
);
}
}
return
Get
<
RB_Bonus_PlanExtend
>(
builder
.
ToString
()).
ToList
();
}
}
}
Edu.Repository/Sell/RB_Bouns_PlanDetailRepository.cs
0 → 100644
View file @
170b242e
using
Edu.Common.Enum
;
using
Edu.Model.Entity.Sell
;
using
Edu.Model.ViewModel.Sell
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
namespace
Edu.Repository.Sell
{
/// <summary>
/// 课程顾问、市场达标奖金配置阶梯仓储层
/// </summary>
public
class
RB_Bouns_PlanDetailRepository
:
BaseRepository
<
RB_Bouns_PlanDetail
>
{
/// <summary>
/// 获取课程顾问、市场达标奖金配置阶梯列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Bouns_PlanDetail_Extend
>
GetBounsPlanDetailListRepository
(
RB_Bouns_PlanDetail_Extend
query
)
{
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
SELECT A.*
FROM RB_Bouns_PlanDetail AS A
WHERE 1=1
"
);
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Bouns_PlanDetail_Extend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(
query
.
PlanId
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Bouns_PlanDetail_Extend
.
PlanId
),
query
.
PlanId
);
}
}
return
Get
<
RB_Bouns_PlanDetail_Extend
>(
builder
.
ToString
()).
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