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
d9346fe5
Commit
d9346fe5
authored
Dec 20, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增实体类
parent
90e6c755
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
735 additions
and
5 deletions
+735
-5
RB_Customer.cs
Edu.Model/Entity/Customer/RB_Customer.cs
+6
-0
RB_Enterprise.cs
Edu.Model/Entity/Customer/RB_Enterprise.cs
+54
-0
RB_Channel.cs
Edu.Model/Entity/System/RB_Channel.cs
+54
-0
RB_LearningGoals.cs
Edu.Model/Entity/System/RB_LearningGoals.cs
+56
-0
RB_Enterprise_Extend.cs
Edu.Model/ViewModel/Customer/RB_Enterprise_Extend.cs
+15
-0
RB_Channel_Extend.cs
Edu.Model/ViewModel/System/RB_Channel_Extend.cs
+14
-0
RB_LearningGoals_Extend.cs
Edu.Model/ViewModel/System/RB_LearningGoals_Extend.cs
+14
-0
CustomerModule.cs
Edu.Module.Customer/CustomerModule.cs
+85
-0
CustomerStudentModule.cs
Edu.Module.Customer/CustomerStudentModule.cs
+170
-5
RB_EnterpriseRepository.cs
Edu.Repository/Customer/RB_EnterpriseRepository.cs
+82
-0
RB_ChannelRepository.cs
Edu.Repository/System/RB_ChannelRepository.cs
+92
-0
RB_LearningGoalsRepository.cs
Edu.Repository/System/RB_LearningGoalsRepository.cs
+92
-0
B2BCustomerController.cs
Edu.WebApi/Controllers/Customer/B2BCustomerController.cs
+1
-0
No files found.
Edu.Model/Entity/Customer/RB_Customer.cs
View file @
d9346fe5
...
...
@@ -211,5 +211,11 @@ namespace Edu.Model.Entity.Customer
/// 同业类型 1企业 2学校
/// </summary>
public
int
CustomerType
{
get
;
set
;
}
/// <summary>
/// 微信号码
/// </summary>
public
string
WeChatNo
{
get
;
set
;
}
}
}
\ No newline at end of file
Edu.Model/Entity/Customer/RB_Enterprise.cs
0 → 100644
View file @
d9346fe5
using
Edu.Common.Enum
;
using
System
;
using
VT.FW.DB
;
namespace
Edu.Model.Entity.Customer
{
/// <summary>
/// 企业信息实体类
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Enterprise
{
/// <summary>
/// 主键编号
/// </summary>
public
int
Id
{
get
;
set
;
}
/// <summary>
/// 企业名称
/// </summary>
public
string
EnterpriseName
{
get
;
set
;
}
/// <summary>
/// 删除状态(1-删除)
/// </summary>
public
DateStateEnum
Status
{
get
;
set
;
}
/// <summary>
/// 集团编号
/// </summary>
public
int
Group_Id
{
get
;
set
;
}
/// <summary>
/// 创建人
/// </summary>
public
int
CreateBy
{
get
;
set
;
}
/// <summary>
/// 创建时间
/// </summary>
public
DateTime
CreateTime
{
get
;
set
;
}
/// <summary>
/// 修改人
/// </summary>
public
int
UpdateBy
{
get
;
set
;
}
/// <summary>
/// 更新时间
/// </summary>
public
DateTime
UpdateTime
{
get
;
set
;
}
}
}
Edu.Model/Entity/System/RB_Channel.cs
0 → 100644
View file @
d9346fe5
using
Edu.Common.Enum
;
using
System
;
using
VT.FW.DB
;
namespace
Edu.Model.Entity.System
{
/// <summary>
/// 渠道实体类
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Channel
{
/// <summary>
/// 主键编号
/// </summary>
public
int
Id
{
get
;
set
;
}
/// <summary>
/// 渠道名称
/// </summary>
public
string
Name
{
get
;
set
;
}
/// <summary>
/// 删除状态(1-删除)
/// </summary>
public
DateStateEnum
Status
{
get
;
set
;
}
/// <summary>
/// 集团编号
/// </summary>
public
int
Group_Id
{
get
;
set
;
}
/// <summary>
/// 创建人
/// </summary>
public
int
CreateBy
{
get
;
set
;
}
/// <summary>
/// 创建时间
/// </summary>
public
DateTime
CreateTime
{
get
;
set
;
}
/// <summary>
/// 修改人
/// </summary>
public
int
UpdateBy
{
get
;
set
;
}
/// <summary>
/// 更新时间
/// </summary>
public
DateTime
UpdateTime
{
get
;
set
;
}
}
}
Edu.Model/Entity/System/RB_LearningGoals.cs
0 → 100644
View file @
d9346fe5
using
Edu.Common.Enum
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
using
VT.FW.DB
;
namespace
Edu.Model.Entity.System
{
/// <summary>
/// 学习目的实体类
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_LearningGoals
{
/// <summary>
/// 主键编号
/// </summary>
public
int
Id
{
get
;
set
;
}
/// <summary>
/// 学习目的名称
/// </summary>
public
string
Name
{
get
;
set
;
}
/// <summary>
/// 删除状态(1-删除)
/// </summary>
public
DateStateEnum
Status
{
get
;
set
;
}
/// <summary>
/// 集团编号
/// </summary>
public
int
Group_Id
{
get
;
set
;
}
/// <summary>
/// 创建人
/// </summary>
public
int
CreateBy
{
get
;
set
;
}
/// <summary>
/// 创建时间
/// </summary>
public
DateTime
CreateTime
{
get
;
set
;
}
/// <summary>
/// 修改人
/// </summary>
public
int
UpdateBy
{
get
;
set
;
}
/// <summary>
/// 更新时间
/// </summary>
public
DateTime
UpdateTime
{
get
;
set
;
}
}
}
Edu.Model/ViewModel/Customer/RB_Enterprise_Extend.cs
0 → 100644
View file @
d9346fe5
using
Edu.Model.Entity.Customer
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Edu.Model.ViewModel.Customer
{
/// <summary>
/// 企业信息扩展实体类
/// </summary>
public
class
RB_Enterprise_Extend
:
RB_Enterprise
{
}
}
Edu.Model/ViewModel/System/RB_Channel_Extend.cs
0 → 100644
View file @
d9346fe5
using
Edu.Model.Entity.System
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Edu.Model.ViewModel.System
{
/// <summary>
/// 渠道扩展实体类
/// </summary>
public
class
RB_Channel_Extend
:
RB_Channel
{
}
}
Edu.Model/ViewModel/System/RB_LearningGoals_Extend.cs
0 → 100644
View file @
d9346fe5
using
Edu.Model.Entity.System
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Edu.Model.ViewModel.System
{
/// <summary>
/// 学习目的扩展实体类
/// </summary>
public
class
RB_LearningGoals_Extend
:
RB_LearningGoals
{
}
}
Edu.Module.Customer/CustomerModule.cs
View file @
d9346fe5
...
...
@@ -45,6 +45,11 @@ namespace Edu.Module.Customer
/// </summary>
private
readonly
RB_StageRepository
stageRepository
=
new
RB_StageRepository
();
/// <summary>
/// 企业信息仓储层对象
/// </summary>
private
readonly
RB_EnterpriseRepository
enterpriseRepository
=
new
RB_EnterpriseRepository
();
/// <summary>
/// 获取客户分页列表..
...
...
@@ -92,6 +97,7 @@ namespace Edu.Module.Customer
{
nameof
(
RB_Customer_Extend
.
EnterpriseName
),
model
.
EnterpriseName
},
{
nameof
(
RB_Customer_Extend
.
CustomerType
),
model
.
CustomerType
},
{
nameof
(
RB_Customer_Extend
.
UpdateTime
),
model
.
UpdateTime
},
{
nameof
(
RB_Customer_Extend
.
WeChatNo
),
model
.
WeChatNo
},
};
flag
=
customerRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Customer_Extend
.
CustomerId
),
model
.
CustomerId
));
if
(
flag
)
{
...
...
@@ -363,5 +369,84 @@ namespace Edu.Module.Customer
{
return
customerRepository
.
GetCustomerListRepository
(
query
);
}
/// <summary>
/// 获取企业分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Enterprise_Extend
>
GetEnterprisePageModule
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Enterprise_Extend
query
)
{
var
list
=
enterpriseRepository
.
GetEnterprisePageRepository
(
pageIndex
,
pageSize
,
out
rowsCount
,
query
);
return
list
;
}
/// <summary>
/// 获取企业列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Enterprise_Extend
>
GetEnterpriseListModule
(
RB_Enterprise_Extend
query
)
{
var
list
=
enterpriseRepository
.
GetEnterpriseListRepository
(
query
);
return
list
;
}
/// <summary>
/// 新增修改企业信息
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public
bool
SetEnterpriseModule
(
RB_Enterprise_Extend
model
)
{
bool
flag
=
false
;
if
(
model
.
Id
>
0
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Enterprise_Extend
.
EnterpriseName
),
model
.
EnterpriseName
},
{
nameof
(
RB_Enterprise_Extend
.
UpdateBy
),
model
.
UpdateBy
},
{
nameof
(
RB_Enterprise_Extend
.
UpdateTime
),
model
.
UpdateTime
},
};
flag
=
enterpriseRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Enterprise_Extend
.
Id
),
model
.
Id
));
}
else
{
var
newId
=
enterpriseRepository
.
Insert
(
model
);
model
.
Id
=
newId
;
flag
=
newId
>
0
;
}
return
flag
;
}
/// <summary>
/// 根据编号获取企业信息实体类
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public
RB_Enterprise_Extend
GetEnterpriseModule
(
int
Id
)
{
var
extModel
=
enterpriseRepository
.
GetEntity
<
RB_Enterprise_Extend
>(
Id
);
return
extModel
;
}
/// <summary>
/// 根据编号删除企业信息
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public
bool
RemoveEnterpriseModule
(
int
Id
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Enterprise_Extend
.
Status
),(
int
)
DateStateEnum
.
Delete
},
};
bool
flag
=
enterpriseRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Enterprise_Extend
.
Id
),
Id
));
return
flag
;
}
}
}
Edu.Module.Customer/CustomerStudentModule.cs
View file @
d9346fe5
...
...
@@ -11,6 +11,7 @@ using Edu.Model.ViewModel.User;
using
Edu.Common.Plugin
;
using
Edu.Repository.System
;
using
Edu.Model.Entity.System
;
using
Edu.Model.ViewModel.System
;
namespace
Edu.Module.Customer
{
...
...
@@ -34,11 +35,6 @@ namespace Edu.Module.Customer
/// </summary>
private
readonly
RB_Student_VisitRepository
student_VisitRepository
=
new
RB_Student_VisitRepository
();
/// <summary>
/// 学生
/// </summary>
private
readonly
RB_StudentRepository
studentRepository
=
new
RB_StudentRepository
();
/// <summary>
/// 学员日志仓储层对象
/// </summary>
...
...
@@ -74,6 +70,16 @@ namespace Edu.Module.Customer
/// </summary>
private
readonly
RB_Student_TypeRepository
student_TypeRepository
=
new
RB_Student_TypeRepository
();
/// <summary>
/// 学习目的仓储层对象
/// </summary>
private
readonly
RB_LearningGoalsRepository
learningGoalsRepository
=
new
RB_LearningGoalsRepository
();
/// <summary>
/// 来源渠道仓储层对象
/// </summary>
private
readonly
RB_ChannelRepository
channelRepository
=
new
RB_ChannelRepository
();
#
region
学员约访
...
...
@@ -804,5 +810,164 @@ namespace Edu.Module.Customer
bool
flag
=
student_TypeRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Stage
.
Id
),
Id
));
return
flag
;
}
/// <summary>
/// 获取学习目的分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_LearningGoals_Extend
>
GetLearningGoalsPageModule
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_LearningGoals_Extend
query
)
{
var
list
=
learningGoalsRepository
.
GetLearningGoalsPageRepository
(
pageIndex
,
pageSize
,
out
rowsCount
,
query
);
return
list
;
}
/// <summary>
/// 获取学习目的列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_LearningGoals_Extend
>
GetLearningGoalsListModule
(
RB_LearningGoals_Extend
query
)
{
var
list
=
learningGoalsRepository
.
GetLearningGoalsListRepository
(
query
);
return
list
;
}
/// <summary>
/// 获取学习目的实体类
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public
RB_LearningGoals_Extend
GetLearningGoalsExtEntityModule
(
int
Id
)
{
var
extModel
=
learningGoalsRepository
.
GetLearningGoalsExtEntityRepository
(
Id
);
return
extModel
;
}
/// <summary>
/// 新增修改学习目的
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public
bool
SetLearningGoalsModule
(
RB_LearningGoals_Extend
model
)
{
bool
flag
=
false
;
if
(
model
.
Id
>
0
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_LearningGoals_Extend
.
Name
),
model
.
Name
},
{
nameof
(
RB_LearningGoals_Extend
.
UpdateBy
),
model
.
UpdateBy
},
{
nameof
(
RB_LearningGoals_Extend
.
UpdateTime
),
model
.
UpdateTime
},
};
flag
=
learningGoalsRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_LearningGoals_Extend
.
Id
),
model
.
Id
));
}
else
{
var
newId
=
learningGoalsRepository
.
Insert
(
model
);
model
.
Id
=
newId
;
flag
=
newId
>
0
;
}
return
flag
;
}
/// <summary>
/// 删除学习目的
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public
bool
RemoveLearningGoalsModule
(
int
Id
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_LearningGoals_Extend
.
Status
),(
int
)
DateStateEnum
.
Delete
},
};
bool
flag
=
learningGoalsRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_LearningGoals_Extend
.
Id
),
Id
));
return
flag
;
}
/// <summary>
/// 获取渠道分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Channel_Extend
>
GetChannelPageModule
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Channel_Extend
query
)
{
var
list
=
channelRepository
.
GetChannelPageRepository
(
pageIndex
,
pageSize
,
out
rowsCount
,
query
);
return
list
;
}
/// <summary>
/// 获取渠道列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Channel_Extend
>
GetChannelListModule
(
RB_Channel_Extend
query
)
{
var
list
=
channelRepository
.
GetChannelListRepository
(
query
);
return
list
;
}
/// <summary>
/// 获取学习目的实体类
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public
RB_Channel_Extend
GetChannelExtEntityModule
(
int
Id
)
{
var
extModel
=
channelRepository
.
GetChannelExtEntityRepository
(
Id
);
return
extModel
;
}
/// <summary>
/// 新增修改收客
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public
bool
SetChannelModule
(
RB_Channel_Extend
model
)
{
bool
flag
=
false
;
if
(
model
.
Id
>
0
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Channel_Extend
.
Name
),
model
.
Name
},
{
nameof
(
RB_Channel_Extend
.
UpdateBy
),
model
.
UpdateBy
},
{
nameof
(
RB_Channel_Extend
.
UpdateTime
),
model
.
UpdateTime
},
};
flag
=
channelRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Channel_Extend
.
Id
),
model
.
Id
));
}
else
{
var
newId
=
channelRepository
.
Insert
(
model
);
model
.
Id
=
newId
;
flag
=
newId
>
0
;
}
return
flag
;
}
/// <summary>
/// 删除收客渠道
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public
bool
RemoveChannelModule
(
int
Id
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Channel_Extend
.
Status
),(
int
)
DateStateEnum
.
Delete
},
};
var
flag
=
channelRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Channel_Extend
.
Id
),
Id
));
return
flag
;
}
}
}
Edu.Repository/Customer/RB_EnterpriseRepository.cs
0 → 100644
View file @
d9346fe5
using
Edu.Common.Enum
;
using
Edu.Model.Entity.Customer
;
using
Edu.Model.ViewModel.Customer
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
VT.FW.DB.Dapper
;
namespace
Edu.Repository.Customer
{
/// <summary>
/// 企业信息仓储层
/// </summary>
public
class
RB_EnterpriseRepository
:
BaseRepository
<
RB_Enterprise
>
{
/// <summary>
/// 获取企业分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Enterprise_Extend
>
GetEnterprisePageRepository
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Enterprise_Extend
query
)
{
StringBuilder
builder
=
new
StringBuilder
();
var
parameters
=
new
DynamicParameters
();
builder
.
AppendFormat
(
@"
SELECT A.*
FROM RB_Enterprise AS A
WHERE 1=1
"
);
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Enterprise_Extend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Enterprise_Extend
.
Group_Id
),
query
.
Group_Id
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
EnterpriseName
))
{
builder
.
AppendFormat
(
" AND A.{0} LIKE @EnterpriseName "
,
nameof
(
RB_Enterprise_Extend
.
EnterpriseName
));
parameters
.
Add
(
"EnterpriseName"
,
"%"
+
query
.
EnterpriseName
.
Trim
()
+
"%"
);
}
}
return
GetPage
<
RB_Enterprise_Extend
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
/// <summary>
/// 获取企业列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Enterprise_Extend
>
GetEnterpriseListRepository
(
RB_Enterprise_Extend
query
)
{
StringBuilder
builder
=
new
StringBuilder
();
var
parameters
=
new
DynamicParameters
();
builder
.
AppendFormat
(
@"
SELECT A.*
FROM RB_Enterprise AS A
WHERE 1=1
"
);
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Enterprise_Extend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Enterprise_Extend
.
Group_Id
),
query
.
Group_Id
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
EnterpriseName
))
{
builder
.
AppendFormat
(
" AND A.{0} LIKE @EnterpriseName "
,
nameof
(
RB_Enterprise_Extend
.
EnterpriseName
));
parameters
.
Add
(
"EnterpriseName"
,
"%"
+
query
.
EnterpriseName
.
Trim
()
+
"%"
);
}
}
return
Get
<
RB_Enterprise_Extend
>(
builder
.
ToString
(),
parameters
).
ToList
();
}
}
}
Edu.Repository/System/RB_ChannelRepository.cs
0 → 100644
View file @
d9346fe5
using
Edu.Common.Enum
;
using
Edu.Model.Entity.System
;
using
Edu.Model.ViewModel.System
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
using
VT.FW.DB.Dapper
;
using
System.Linq
;
namespace
Edu.Repository.System
{
/// <summary>
/// 渠道仓储层
/// </summary>
public
class
RB_ChannelRepository
:
BaseRepository
<
RB_Channel
>
{
/// <summary>
/// 获取渠道分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Channel_Extend
>
GetChannelPageRepository
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Channel_Extend
query
)
{
StringBuilder
builder
=
new
StringBuilder
();
var
parameters
=
new
DynamicParameters
();
builder
.
AppendFormat
(
@"
SELECT A.*
FROM RB_Channel AS A
WHERE 1=1
"
);
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Channel_Extend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Channel_Extend
.
Group_Id
),
query
.
Group_Id
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
Name
))
{
builder
.
AppendFormat
(
" AND A.{0} LIKE @Name "
,
nameof
(
RB_LearningGoals_Extend
.
Name
));
parameters
.
Add
(
"Name"
,
"%"
+
query
.
Name
.
Trim
()
+
"%"
);
}
}
return
GetPage
<
RB_Channel_Extend
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
/// <summary>
/// 获取渠道列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Channel_Extend
>
GetChannelListRepository
(
RB_Channel_Extend
query
)
{
StringBuilder
builder
=
new
StringBuilder
();
var
parameters
=
new
DynamicParameters
();
builder
.
AppendFormat
(
@"
SELECT A.*
FROM RB_Channel AS A
WHERE 1=1
"
);
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Channel_Extend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_Channel_Extend
.
Group_Id
),
query
.
Group_Id
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
Name
))
{
builder
.
AppendFormat
(
" AND A.{0} LIKE @Name "
,
nameof
(
RB_Channel_Extend
.
Name
));
parameters
.
Add
(
"Name"
,
"%"
+
query
.
Name
.
Trim
()
+
"%"
);
}
}
return
Get
<
RB_Channel_Extend
>(
builder
.
ToString
(),
parameters
).
ToList
();
}
/// <summary>
/// 获取学习目的实体类
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public
RB_Channel_Extend
GetChannelExtEntityRepository
(
int
Id
)
{
var
extModel
=
base
.
GetEntity
<
RB_Channel_Extend
>(
Id
);
return
extModel
;
}
}
}
Edu.Repository/System/RB_LearningGoalsRepository.cs
0 → 100644
View file @
d9346fe5
using
Edu.Common.Enum
;
using
Edu.Model.Entity.System
;
using
Edu.Model.ViewModel.System
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
VT.FW.DB.Dapper
;
namespace
Edu.Repository.System
{
/// <summary>
/// 学习目的仓储层
/// </summary>
public
class
RB_LearningGoalsRepository
:
BaseRepository
<
RB_LearningGoals
>
{
/// <summary>
/// 获取学习目的分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_LearningGoals_Extend
>
GetLearningGoalsPageRepository
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_LearningGoals_Extend
query
)
{
StringBuilder
builder
=
new
StringBuilder
();
var
parameters
=
new
DynamicParameters
();
builder
.
AppendFormat
(
@"
SELECT A.*
FROM RB_LearningGoals AS A
WHERE 1=1
"
);
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_LearningGoals_Extend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_LearningGoals_Extend
.
Group_Id
),
query
.
Group_Id
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
Name
))
{
builder
.
AppendFormat
(
" AND A.{0} LIKE @Name "
,
nameof
(
RB_LearningGoals_Extend
.
Name
));
parameters
.
Add
(
"Name"
,
"%"
+
query
.
Name
.
Trim
()
+
"%"
);
}
}
return
GetPage
<
RB_LearningGoals_Extend
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
/// <summary>
/// 获取学习目的列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_LearningGoals_Extend
>
GetLearningGoalsListRepository
(
RB_LearningGoals_Extend
query
)
{
StringBuilder
builder
=
new
StringBuilder
();
var
parameters
=
new
DynamicParameters
();
builder
.
AppendFormat
(
@"
SELECT A.*
FROM RB_LearningGoals AS A
WHERE 1=1
"
);
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_LearningGoals_Extend
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
AppendFormat
(
@" AND A.{0}={1} "
,
nameof
(
RB_LearningGoals_Extend
.
Group_Id
),
query
.
Group_Id
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
Name
))
{
builder
.
AppendFormat
(
" AND A.{0} LIKE @Name "
,
nameof
(
RB_LearningGoals_Extend
.
Name
));
parameters
.
Add
(
"Name"
,
"%"
+
query
.
Name
.
Trim
()
+
"%"
);
}
}
return
Get
<
RB_LearningGoals_Extend
>(
builder
.
ToString
(),
parameters
).
ToList
();
}
/// <summary>
/// 获取学习目的实体类
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public
RB_LearningGoals_Extend
GetLearningGoalsExtEntityRepository
(
int
Id
)
{
var
extModel
=
base
.
GetEntity
<
RB_LearningGoals_Extend
>(
Id
);
return
extModel
;
}
}
}
Edu.WebApi/Controllers/Customer/B2BCustomerController.cs
View file @
d9346fe5
...
...
@@ -97,6 +97,7 @@ namespace Edu.WebApi.Controllers.Customer
Remark
=
base
.
ParmJObj
.
GetStringValue
(
"Remark"
),
EnterpriseName
=
base
.
ParmJObj
.
GetStringValue
(
"EnterpriseName"
),
CustomerType
=
base
.
ParmJObj
.
GetInt
(
"CustomerType"
),
WeChatNo
=
base
.
ParmJObj
.
GetStringValue
(
"WeChatNo"
),
};
if
(
string
.
IsNullOrEmpty
(
model
.
CustomerName
))
{
...
...
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