12 lines
320 B
C#
12 lines
320 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_SYSTEMPAUSELOG : IRepository<WX_SYSTEMPAUSELOG>
|
|
{
|
|
List<WX_SYSTEMPAUSELOG> GetList(ref Pager page, string alias, decimal innerUserId, string stime, string etime);
|
|
}
|
|
}
|