18 lines
758 B
C#
18 lines
758 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.QueryMap;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_HGRECORD_Q
|
|
{
|
|
CSVR_HGRECORD GetHgrecord(decimal recordid, decimal recordtype, string resid, decimal? orderid);
|
|
List<HGRecordModel> GetListHgrecord(ref Pager pager, decimal? recordid, decimal? memoid, DateTime? ctime, DateTime? etime, decimal? isdown);
|
|
List<CSVR_HGRECORD> GetListComplainrecord(ref Pager pager, decimal? recordid, DateTime? ctime, DateTime? etime, decimal? isdown);
|
|
|
|
List<CSVR_HGRECORD> GetListOrderHgrecord(ref Pager pager, decimal? recordid, decimal? orderid, DateTime? ctime, DateTime? etime, decimal? isdown);
|
|
}
|
|
}
|