13 lines
393 B
C#
13 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.QH
|
|
{
|
|
public interface IQH_CUSTOMER_SALEUSER_LOG : IRepository<QH_CUSTOMER_SALEUSER_LOG>
|
|
{
|
|
List<QH_CUSTOMER_SALEUSER_LOG> GetList(ref Pager pager, string userAccount, decimal? olduserId, decimal? newuserId, DateTime? starttime, DateTime? endtime);
|
|
}
|
|
}
|