using MyCode.Project.Domain.Message.Response.JackYun; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Services { public interface IJackYunStockinService { /// /// 调度运行推送入库/出库申请 /// /// /// void TaskSendInventoryMovement(DateTime now); /// /// 推送入库申请 /// /// void SendInStock(DateTime now); /// /// 推送出库申请 /// /// void SendOutStock(DateTime now); } }