using CRM.Core.DTO.Ord; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using WX.CRM.Common; using WX.CRM.Common.Employee; 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 GetHandGifList(ref Laypage pager, Wx_SzzyOrder_HandGift_Query param, QueryUserComboDto usercomboDto); bool Save(WX_SZZYORDER_HANDGIFT model, ref ValidationErrors errors); OrderHandGiftDto GetSuProductIdByOrderId(long orderId, ref ValidationErrors errors); WX_SZZYORDER_HANDGIFT GetHandleGifById(decimal orderid); int GetAuditCount(decimal eid); bool CheckSave(WX_SZZYORDER_HANDGIFT model, ref ValidationErrors errors); ApiResult> ImportBasicsGift(string filename, Stream filestream); } }