25 lines
747 B
C#
25 lines
747 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_ACTIVEREVAPPLY_Q
|
|
{
|
|
/// <summary>
|
|
/// 审核列表
|
|
/// </summary>
|
|
/// <param name="pg"></param>
|
|
/// <param name="status"></param>
|
|
/// <param name="stime"></param>
|
|
/// <param name="etime"></param>
|
|
/// <returns></returns>
|
|
List<SOFT_ACTIVEREVAPPLY> 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);
|
|
}
|
|
}
|