12 lines
339 B
C#
12 lines
339 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_STOCKRECOMMEND : IRepository<WX_STOCKRECOMMEND>
|
|
{
|
|
List<WX_STOCKRECOMMEND> GetList(ref Pager pager, decimal? userId, string stockCode, string stockName, string stime, string etime);
|
|
}
|
|
}
|