17 lines
631 B
C#
17 lines
631 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.DTO;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_SHAREDPOOL : IRepository<RES_SHAREDPOOL>
|
|
{
|
|
int GetCount(string resTypeCode);
|
|
List<Res_SharedPool_View> GetList(ref Pager pg, string resid, DateTime? sTime, DateTime? eTime, DateTime? aTime, DateTime? bTime, string cName, string resTypeCode, string noContact, string memoType, decimal? labeltype, DateTime? loginstime, DateTime? loginetime);
|
|
string FindSharedPoolRes(decimal userId, decimal eid, string resTypeCode);
|
|
|
|
}
|
|
}
|