using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 诚信系统投诉信息-数据库操作接口 /// public interface IIntegrity_ComplainanInfoDAL : ICommonDAL { /// /// 会员投诉列表 /// /// /// /// /// /// /// IEnumerable SelectModelPageByFirm(int complaintsTypeId, string respondentName, string orderCode, int complaintsStatusId, Guid memberId, Infrastructure.Query.Pagination pagination); /// /// 会员投诉列表(管理员) /// /// /// /// /// /// /// IEnumerable SelectModelPageBysys(int complaintsTypeId, string respondentName, string orderCode, int complaintsStatusId, Infrastructure.Query.Pagination pagination); /// /// 根据keyId获取投诉实体 /// /// /// Integrity_ComplainanInfo GetModel(int keyId); } }