Commit 3e08ffaf authored by 罗超's avatar 罗超

新增标签查询

parent f3888c27
...@@ -83,6 +83,8 @@ namespace Edu.Module.QYWeChat ...@@ -83,6 +83,8 @@ namespace Edu.Module.QYWeChat
/// </summary> /// </summary>
private RB_CustomQueryRepository customQueryRepository = new RB_CustomQueryRepository(); private RB_CustomQueryRepository customQueryRepository = new RB_CustomQueryRepository();
#region 客户字段 #region 客户字段
/// <summary> /// <summary>
/// 获取客户字段列表 /// 获取客户字段列表
......
...@@ -83,7 +83,7 @@ namespace Edu.Module.QYWeChat ...@@ -83,7 +83,7 @@ namespace Edu.Module.QYWeChat
/// </summary> /// </summary>
private readonly RB_WeChat_ChannelLogRepository weChat_ChannelLogRepository = new RB_WeChat_ChannelLogRepository(); private readonly RB_WeChat_ChannelLogRepository weChat_ChannelLogRepository = new RB_WeChat_ChannelLogRepository();
#region 微信配置 #region 微信配置
/// <summary> /// <summary>
...@@ -1410,6 +1410,16 @@ namespace Edu.Module.QYWeChat ...@@ -1410,6 +1410,16 @@ namespace Edu.Module.QYWeChat
return GroupList; 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>
/// 新增修改分组/标签 /// 新增修改分组/标签
/// </summary> /// </summary>
......
...@@ -21,7 +21,7 @@ namespace Edu.Repository.WeChat ...@@ -21,7 +21,7 @@ namespace Edu.Repository.WeChat
/// <param name="count"></param> /// <param name="count"></param>
/// <param name="demodel"></param> /// <param name="demodel"></param>
/// <returns></returns> /// <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"; string where = $@" 1=1 and r.{nameof(RB_WeChat_Lable_ViewModel.Status)} =0";
if (demodel.Group_Id > 0) if (demodel.Group_Id > 0)
...@@ -89,5 +89,17 @@ ORDER BY r.Id asc "; ...@@ -89,5 +89,17 @@ ORDER BY r.Id asc ";
return Get<RB_WeChat_Lable_ViewModel>(sql).ToList(); 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();
}
} }
} }
...@@ -646,6 +646,26 @@ namespace Edu.WebApi.Controllers.QYWeChat ...@@ -646,6 +646,26 @@ namespace Edu.WebApi.Controllers.QYWeChat
#region 客户标签 #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>
/// 获取企业标签列表 /// 获取企业标签列表
/// </summary> /// </summary>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment