using HighWayIot.Repository.domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HighWayIot.Repository.service { public interface IProductPlanInfoService { /// /// 通过产线工位获取生产计划 /// /// /// List GetProductPlanInfosByProductLineCode(string productLineCode); /// /// 通过计划编号获取计划信息 /// /// /// ProductPlanInfo GetProductPlanByPlanCode(string planCode); /// /// 添加生产计划 /// /// /// bool InsertProductPlanInfo(ProductPlanInfo productPlanInfo); /// /// 修改生产计划 /// /// /// bool UpdateProductPlanInfo(ProductPlanInfo productPlanInfo); } }