28 lines
926 B
C#
28 lines
926 B
C#
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<SOFT_ACTIVEORDER> getOrderByResId(string resId);
|
|
SOFT_ACTIVEORDER getOrderByOrderId(decimal orderId);
|
|
|
|
|
|
/// <summary>
|
|
/// 审核列表
|
|
/// </summary>
|
|
/// <param name="pg"></param>
|
|
/// <param name="status"></param>
|
|
/// <param name="stime"></param>
|
|
/// <param name="etime"></param>
|
|
/// <returns></returns>
|
|
List<SOFT_ACTIVEORDER> getOrderList(ref Pager pg, int status, DateTime? stime, DateTime? etime, int productId, string resid, string orderid, string username, string groupId, decimal userid);
|
|
|
|
List<SOFT_ACTIVEORDER> getOrderByUsername(string username);
|
|
}
|
|
}
|