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