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 { List GetUserRefund(decimal? szzyOrderId, decimal? innerUserId, decimal? gId, DateTime? yearmonth); List GetUserRefundThree(decimal? szzyOrderId, decimal? innerUserId, decimal? gId, DateTime? yearmonth); List GetGrouperRefund(decimal? gId, DateTime? yearmonth, decimal? eid); List GetGrouperRefundThree(decimal? gId, DateTime? yearmonth, decimal? eid); List GetOrderRefund(); List GetOrderRefundThree(); List GetOrderRefundDetail(decimal? gId, DateTime? yearmonth, decimal? eid, decimal? isacturalrefund = null); List GetOrderRefundDetailThree(decimal? gId, DateTime? yearmonth, decimal? eid); void updateSzzyOrderCname(string resid, string cname); /// /// 修改资源是否为线下资源 /// void UpdateResIsTuiGuang(string resid, decimal orderid); } }