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
3e08ffaf
Commit
3e08ffaf
authored
Dec 07, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增标签查询
parent
f3888c27
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
2 deletions
+46
-2
QYCustomerModule.cs
Edu.Module.QYWeChat/QYCustomerModule.cs
+2
-0
QYWeChatModule.cs
Edu.Module.QYWeChat/QYWeChatModule.cs
+11
-1
RB_WeChat_LableRepository.cs
Edu.Repository/WeChat/RB_WeChat_LableRepository.cs
+13
-1
QYWeChatController.cs
Edu.WebApi/Controllers/QYWeChat/QYWeChatController.cs
+20
-0
No files found.
Edu.Module.QYWeChat/QYCustomerModule.cs
View file @
3e08ffaf
...
...
@@ -83,6 +83,8 @@ namespace Edu.Module.QYWeChat
/// </summary>
private
RB_CustomQueryRepository
customQueryRepository
=
new
RB_CustomQueryRepository
();
#
region
客户字段
/// <summary>
/// 获取客户字段列表
...
...
Edu.Module.QYWeChat/QYWeChatModule.cs
View file @
3e08ffaf
...
...
@@ -83,7 +83,7 @@ namespace Edu.Module.QYWeChat
/// </summary>
private
readonly
RB_WeChat_ChannelLogRepository
weChat_ChannelLogRepository
=
new
RB_WeChat_ChannelLogRepository
();
#
region
微信配置
/// <summary>
...
...
@@ -1410,6 +1410,16 @@ namespace Edu.Module.QYWeChat
return
GroupList
;
}
/// <summary>
/// 根据多个ID获取对应的标签信息
/// </summary>
/// <param name="ids"></param>
/// <returns></returns>
public
List
<
RB_WeChat_Lable_ViewModel
>
GetLabelListByIds
(
string
ids
)
{
return
weChat_LableRepository
.
GetLabelListByIds
(
ids
);
}
/// <summary>
/// 新增修改分组/标签
/// </summary>
...
...
Edu.Repository/WeChat/RB_WeChat_LableRepository.cs
View file @
3e08ffaf
...
...
@@ -21,7 +21,7 @@ namespace Edu.Repository.WeChat
/// <param name="count"></param>
/// <param name="demodel"></param>
/// <returns></returns>
public
List
<
RB_WeChat_Lable_ViewModel
>
GetPageList
(
int
pageIndex
,
int
pageSize
,
out
long
count
,
RB_WeChat_Lable_ViewModel
demodel
)
public
List
<
RB_WeChat_Lable_ViewModel
>
GetPageList
(
int
pageIndex
,
int
pageSize
,
out
long
count
,
RB_WeChat_Lable_ViewModel
demodel
)
{
string
where
=
$@" 1=1 and r.
{
nameof
(
RB_WeChat_Lable_ViewModel
.
Status
)}
=0"
;
if
(
demodel
.
Group_Id
>
0
)
...
...
@@ -89,5 +89,17 @@ ORDER BY r.Id asc ";
return
Get
<
RB_WeChat_Lable_ViewModel
>(
sql
).
ToList
();
}
/// <summary>
/// 获取指定ID的标签集合
/// </summary>
/// <param name="ids"></param>
/// <returns></returns>
public
List
<
RB_WeChat_Lable_ViewModel
>
GetLabelListByIds
(
string
ids
)
{
string
sql
=
$"select * from RB_WeChat_Lable where Id in(
{
ids
}
)"
;
return
Get
<
RB_WeChat_Lable_ViewModel
>(
sql
).
ToList
();
}
}
}
Edu.WebApi/Controllers/QYWeChat/QYWeChatController.cs
View file @
3e08ffaf
...
...
@@ -646,6 +646,26 @@ namespace Edu.WebApi.Controllers.QYWeChat
#
region
客户标签
/// <summary>
/// 根据多个ID获取对应的标签信息
/// </summary>
/// <param name="ids"></param>
/// <returns></returns>
public
ApiResult
GetLabelListByIds
()
{
var
param
=
JObject
.
Parse
(
base
.
RequestParm
.
Msg
.
ToString
());
string
ids
=
param
.
GetStringValue
(
"ids"
);
if
(!
string
.
IsNullOrEmpty
(
ids
))
{
var
result
=
weChatModule
.
GetLabelListByIds
(
ids
);
return
ApiResult
.
Success
(
message
:
"OK"
,
data
:
result
);
}
else
{
return
ApiResult
.
Failed
(
"参数信息错误"
);
}
}
/// <summary>
/// 获取企业标签列表
/// </summary>
...
...
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