23 lines
610 B
C#
23 lines
610 B
C#
using CRM.Core.DTO.Ord;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Common.Layui;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_SZZYORDER_HANDGIFT
|
|
{
|
|
List<Wx_SzzyOrder_HandGift_Map> GetHandGifList(ref Laypage pager, Wx_SzzyOrder_HandGift_Query param);
|
|
|
|
bool Save(WX_SZZYORDER_HANDGIFT model, ref ValidationErrors errors);
|
|
|
|
OrderHandGiftDto GetSuProductIdByOrderId(long orderId, ref ValidationErrors errors);
|
|
}
|
|
}
|