ComplianceServer/oldcode/IBLL/QH/IQH_DISCREPANCYGOLD.cs

16 lines
450 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_DISCREPANCYGOLD : IRepository<QH_DISCREPANCYGOLD>
{
List<QH_DISCREPANCYGOLD> GetList(ref Pager pager, string useraccount);
List<QH_DISCREPANCYGOLD> GetList(ref Pager pager, string userAccount, string accountName, string resId, DateTime? starttime, DateTime? endtime);
}
}