24 lines
739 B
C#
24 lines
739 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.MAP;
|
|
using WX.CRM.Model.QueryMap;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_TDORDER : IRepository<WX_SZZYORDER>
|
|
{
|
|
bool CreatOrder(ref retClass result, decimal orderId);
|
|
|
|
List<WX_SZZYORDER> GetList(ref Pager pager, string resId, string contractCode, string szzyOrderId, decimal productId, decimal subProductId, decimal orderType, string stime, string etime, string groupId, decimal innerUserId, string orderStatus, string ostime, string oetime, string fcText);
|
|
|
|
|
|
|
|
|
|
WX_SZZYORDER_Extend GetTDOrderDetail(decimal orderId);
|
|
|
|
bool Delete(ref ValidationErrors errors, decimal orderId);
|
|
|
|
}
|
|
}
|