using System; using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Soft { public interface ISOFT_ACTIVEORDER_Q { SOFT_ACTIVEORDER getOrder(decimal productId, string username, string resId); List getOrderByResId(string resId); SOFT_ACTIVEORDER getOrderByOrderId(decimal orderId); /// /// 审核列表 /// /// /// /// /// /// List getOrderList(ref Pager pg, int status, DateTime? stime, DateTime? etime, int productId, string resid, string orderid, string username, string groupId, decimal userid); List getOrderByUsername(string username); } }