using Edu.Common.Enum; using Edu.Model.Entity.OKR; using Edu.Model.ViewModel.OKR; using System.Collections.Generic; using System.Linq; using System.Text; using VT.FW.DB.Dapper; namespace Edu.Repository.OKR { /// /// OKR更新历史仓储层 /// public class RB_OKR_UpdateHistoryRepository : BaseRepository { /// /// 获取列表 /// /// /// public List GetList(RB_OKR_UpdateHistory_ViewModel demodel) { string where = $@" 1=1 and Status =0"; if (demodel.Group_Id > 0) { where += $@" and {nameof(RB_OKR_UpdateHistory.Group_Id)} ={demodel.Group_Id}"; } if (demodel.Type > 0) { where += $@" and {nameof(RB_OKR_UpdateHistory.Type)} ={demodel.Type}"; } if (demodel.SourceId > 0) { where += $@" and {nameof(RB_OKR_UpdateHistory.SourceId)} ={demodel.SourceId}"; } string sql = $@" select * from RB_OKR_UpdateHistory where {where} order by Id desc"; return Get(sql).ToList(); } /// /// 获取列表 /// /// /// public List GetPageList(int pageIndex,int pageSize,out long count,RB_OKR_UpdateHistory_ViewModel demodel) { string where = $@" 1=1 and Status =0"; if (demodel.Group_Id > 0) { where += $@" and {nameof(RB_OKR_UpdateHistory.Group_Id)} ={demodel.Group_Id}"; } if (demodel.Type > 0) { where += $@" and {nameof(RB_OKR_UpdateHistory.Type)} ={demodel.Type}"; } if (demodel.SourceId > 0) { where += $@" and {nameof(RB_OKR_UpdateHistory.SourceId)} ={demodel.SourceId}"; } string sql = $@" select * from RB_OKR_UpdateHistory where {where} order by Id desc"; return GetPage(pageIndex, pageSize, out count, sql).ToList(); } } }