15 lines
403 B
C#
15 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.DTO;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_SHAREDPOOL_HIS : IRepository<RES_SHAREDPOOL_HIS>
|
|
{
|
|
List<ResSharedPoolHisView> List(ref Pager pager, DateTime? sTime, DateTime? eTime, string resId, QueryUserComboDto usercomboDto);
|
|
}
|
|
}
|