24 lines
620 B
C#
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);
|
|
}
|
|
}
|