18 lines
754 B
C#
18 lines
754 B
C#
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<QC_CUSTOMERCOMPLAIN_Extend> GetList_CustomerComplain(ref Pager pg, string resid, string fromType, string level, decimal? status, DateTime? stime, DateTime? etime, QueryUserComboDto usercomboDto);
|
|
List<QC_CUSTOMERCOMPLAIN_Extend> GetList_CustomerComplainByResIds(List<string> resIds);
|
|
List<QC_CUSTOMERCOMPLAIN_Extend> GetList_CustomerComplainByCustomerId(ref Pager pg, string customerId);
|
|
}
|
|
}
|