25 lines
1.2 KiB
C#
25 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.QueryMap;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_SZZYORDER_REFUND : IRepository<WX_SZZYORDER_REFUND>
|
|
{
|
|
List<SzzyRefundView> GetUserRefund(decimal? szzyOrderId, decimal? innerUserId, decimal? gId, DateTime? yearmonth);
|
|
List<SzzyRefundView> GetUserRefundThree(decimal? szzyOrderId, decimal? innerUserId, decimal? gId, DateTime? yearmonth);
|
|
List<SzzyRefundView> GetGrouperRefund(decimal? gId, DateTime? yearmonth, decimal? eid);
|
|
List<SzzyRefundView> GetGrouperRefundThree(decimal? gId, DateTime? yearmonth, decimal? eid);
|
|
List<SzzyRefundMonthView> GetOrderRefund();
|
|
List<SzzyRefundMonthView> GetOrderRefundThree();
|
|
List<SzzyRefundDetailMonthView> GetOrderRefundDetail(decimal? gId, DateTime? yearmonth, decimal? eid, decimal? isacturalrefund = null);
|
|
List<SzzyRefundDetailMonthView> GetOrderRefundDetailThree(decimal? gId, DateTime? yearmonth, decimal? eid);
|
|
void updateSzzyOrderCname(string resid, string cname);
|
|
/// <summary>
|
|
/// 修改资源是否为线下资源
|
|
/// </summary>
|
|
void UpdateResIsTuiGuang(string resid, decimal orderid);
|
|
}
|
|
}
|