ComplianceServer/oldcode/IBLL/Wx/IWX_WORKACCOUNT_ONLINELOG.cs

11 lines
286 B
C#

using System.Collections.Generic;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Wx
{
public interface IWX_WORKACCOUNT_ONLINELOG : IRepository<WX_WORKACCOUNT_ONLINELOG>
{
List<WX_WORKACCOUNT_ONLINELOG> GetList(string userName, string stime, string etime);
}
}