13 lines
333 B
C#
13 lines
333 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_SZZYPREPAYMENT : IRepository<WX_SZZYPREPAYMENT>
|
|
{
|
|
List<WX_SZZYPREPAYMENT> GetList(ref Pager pager, string prepaymentId, string resId, string realName, decimal? szzyOrderId);
|
|
|
|
}
|
|
}
|