12 lines
350 B
C#
12 lines
350 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_SZZYORDERREFUNDCONTRACT : IRepository<WX_SZZYORDERREFUNDCONTRACT>
|
|
{
|
|
IList<RefundContractView> GetList(decimal? businessId, decimal? orderId, DateTime? stime, DateTime? etime);
|
|
}
|
|
} |