using RIZO.Model.Mes.Dto.MasterData;
using RIZO.Model.Mes.MasterData;
namespace RIZO.Service.Mes.IMesService.MasterData
{
///
/// 产线管理基础信息表service接口
///
public interface IProductionLineService : IBaseService
{
PagedInfo GetList(ProductionLineQueryDto parm);
ProductionLine GetInfo(long Id);
ProductionLine AddProductionLine(ProductionLine parm);
int UpdateProductionLine(ProductionLine parm);
List GetAllLine();
}
}