using Edu.Common.Enum; using Edu.Model.Entity.WeChat; using Edu.Model.ViewModel.WeChat; using System.Collections.Generic; using System.Linq; using System.Text; using VT.FW.DB.Dapper; namespace Edu.Repository.WeChat { /// /// 企业微信渠道活码欢迎语仓储层 /// public class RB_WeChat_ChannelWelcomeRepository : BaseRepository { /// /// 获取分页列表 /// /// /// /// /// /// public List GetPageList(int pageIndex,int pageSize,out long count, RB_WeChat_ChannelWelcome_ViewModel demodel) { DynamicParameters parameters = new DynamicParameters(); string where = $@" 1=1 and r.{nameof(RB_WeChat_ChannelWelcome_ViewModel.Status)} =0"; if (demodel.Group_Id > 0) { where += $@" and r.{nameof(RB_WeChat_ChannelWelcome_ViewModel.Group_Id)} ={demodel.Group_Id}"; } if (demodel.ChannelId > 0) { where += $@" and r.{nameof(RB_WeChat_ChannelWelcome_ViewModel.ChannelId)} ={demodel.ChannelId}"; } if (demodel.Type > 0) { where += $@" and r.{nameof(RB_WeChat_ChannelWelcome_ViewModel.Type)} ={demodel.Type}"; } string sql = $@" SELECT * From RB_WeChat_ChannelWelcome r WHERE {where} ORDER BY r.Id DESC "; return GetPage(pageIndex, pageSize, out count, sql, parameters).ToList(); } /// /// 获取列表 /// /// /// public List GetList(RB_WeChat_ChannelWelcome_ViewModel demodel) { DynamicParameters parameters = new DynamicParameters(); string where = $@" 1=1 and r.{nameof(RB_WeChat_ChannelWelcome_ViewModel.Status)} =0"; if (demodel.Group_Id > 0) { where += $@" and r.{nameof(RB_WeChat_ChannelWelcome_ViewModel.Group_Id)} ={demodel.Group_Id}"; } if (demodel.ChannelId > 0) { where += $@" and r.{nameof(RB_WeChat_ChannelWelcome_ViewModel.ChannelId)} ={demodel.ChannelId}"; } if (demodel.Type > 0) { where += $@" and r.{nameof(RB_WeChat_ChannelWelcome_ViewModel.Type)} ={demodel.Type}"; } string sql = $@" SELECT * From RB_WeChat_ChannelWelcome r WHERE {where} ORDER BY r.Id DESC "; return Get(sql, parameters).ToList(); } } }