using Edu.Common.Enum;
using Edu.Model.Entity.Course;
using Edu.Model.Entity.Sell;
using Edu.Model.ViewModel.Course;
using Edu.Model.ViewModel.Sell;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using VT.FW.DB.Dapper;
namespace Edu.Repository.Sell
{
///
/// 投稿提成规则仓储层
///
public class RB_TeaCon_Commission_RuleRepository : BaseRepository
{
///
/// 获取列表
///
///
///
public List GetList(RB_TeaCon_Commission_Rule_ViewModel demodel)
{
string where = $@" 1=1";
if (demodel.Group_Id > 0)
{
where += $@" and r.{nameof(RB_TeaCon_Commission_Rule_ViewModel.Group_Id)} ={demodel.Group_Id}";
}
string sql = $@" select r.* from RB_TeaCon_Commission_Rule r where {where} order by r.Id desc";
return Get(sql).ToList();
}
}
}