using Admin.Core.IService; using Admin.Core.Model; using Admin.Core.Model.ViewModels; using System.Collections.Generic; using System.Threading.Tasks; namespace Admin.Core.IService { /// /// IProductPlanInfoServices /// public interface IProductPlanInfoServices :IBaseServices { /// /// 钣金获取计划 /// /// Task> QueryPlanInfo(string station); #region 货道出入库 /// /// 通过产线工位获取生产计划 /// /// /// Task> GetProductPlanInfosByProductLineCode(string productLineCode); /// /// 通过计划编号获取计划信息 /// /// /// Task GetProductPlanByPlanCode(string planCode); /// /// 添加生产计划 /// /// /// Task InsertProductPlanInfo(ProductPlanInfo productPlanInfo); /// /// 修改生产计划 /// /// /// Task UpdateProductPlanInfo(ProductPlanInfo productPlanInfo); #endregion } }