using JiepeiWMS.IServices.BASE; using JiepeiWMS.Model.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace JiepeiWMS.IServices { /// /// IWMPurchaseInfoServices /// public interface IWMPurchaseInfoServices : IBaseServices { /// /// 采购多表联查 /// /// Task> QueryMuchTablePurchaseInfo(); /// /// 添加日志 /// /// 1:会员日志 2是后台业务日志 /// /// /// /// int AddLog(int type, int adminId, int orderId, string content); /// /// 获取最大的id /// /// Task GetMaxId(); } }