using System; using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Soft { public interface ISOFT_ACTIVEREVAPPLY_Q { /// /// 审核列表 /// /// /// /// /// /// List getOrderList(ref Pager pg, DateTime? stime, DateTime? etime, int productId, string resid, string orderid, string username); SOFT_ACTIVEREVAPPLY getOrderRevApplyById(decimal pkid); SOFT_ACTIVEREVAPPLY getOrderRevApplyByOrderid(decimal orderid); } }