2025-11-11 15:37:11 +08:00

24 lines
620 B
C#

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