using System;
using System.Collections.Generic;
using System.Data;
using WX.CRM.Common;
namespace WX.CRM.IBLL.Qc
{
public interface IQC_USERSCOREDETAIL_Q
{
///
/// 获取实体
///
///
///
WX.CRM.Model.Entity.QC_USERSCOREDETAIL GetModel(decimal id);
List GetList(ref Pager pager, string groupId, string inneruserId, decimal? status, DateTime? stime, DateTime? etime);
///
/// 获取汇总数据
///
///
///
///
///
///
///
DataTable GetUserScoreDetialCount(string groupId, string inneruserId, decimal? status, DateTime? stime, DateTime? etime);
///
///员工评分汇总表查询
///
///
///
///
///
///
///
DataTable GetUserScoreCollect(string groupId, string inneruserId, decimal? status, DateTime? stime, DateTime? etime);
///
/// 删除 员工评分明细 数据
///
void DeleteScoreData(DateTime stime, DateTime etime);
}
}