TG.WXCRM.V4/IBLL/Wx/IWX_SYSTEMPAUSELOG.cs

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);
}
}