using System; using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; using WX.CRM.Model.MAP; namespace WX.CRM.IBLL.Quality { public interface IQC_CUSTOMERCOMPLAIN_Q { QC_CUSTOMERCOMPLAIN GetModel_CustomerComplain(decimal id); QC_CUSTOMERCOMPLAIN GetModel(decimal recordId); List GetList_CustomerComplain(ref Pager pg, string resid, string fromType, string level, decimal? status, DateTime? stime, DateTime? etime, QueryUserComboDto usercomboDto); List GetList_CustomerComplainByResIds(List resIds); List GetList_CustomerComplainByCustomerId(ref Pager pg, string customerId); } }