TG.WXCRM.V4/IBLL/Base/IBAS_FEEDBACK.cs

12 lines
310 B
C#

using System.Collections.Generic;
using WX.CRM.Common;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Base
{
public interface IBAS_FEEDBACK : IRepository<BAS_FEEDBACK>
{
List<BAS_FEEDBACK> GetList(ref Pager page, decimal? innerUserId, string content, string stime, string etime);
}
}