using System; using System.Collections.Generic; using System.Data; using WX.CRM.Common; namespace WX.CRM.IBLL.Qc { public interface IQC_GROUPERSCOREDETAIL_Q { List GetList(ref Pager pager, string groupId, decimal? grouperEid, decimal? eid, decimal? scoreNo, decimal? status, DateTime? stime, DateTime? etime); /// /// 获取汇总数据 /// /// /// /// /// /// /// /// /// DataTable GetGrouperScoreDetialCount(string groupId, decimal? grouperEid, decimal? userEId, decimal? scoreNo, decimal? status, DateTime? stime, DateTime? etime); /// /// 主管评分汇总 /// /// /// /// /// /// /// /// /// DataTable GetGrouperScoreCollect(string groupId, decimal? grouperEid, decimal? status, DateTime? stime, DateTime? etime); } }