zhuangpei-mesbackend/MES_Model/Services/Plant/IService/IPlantWorkstationService.cs

25 lines
587 B
C#
Raw Normal View History

2025-11-15 14:33:00 +08:00
using MES_Model.Model;
using MES_Model.Model.Business;
using MES_Model.Model.Dto;
using MES_Model.Service;
namespace MES_Model.Services.IPlantService
{
/// <summary>
/// 工站/资源组service接口
/// </summary>
public interface IPlantWorkstationService : IBaseService<PlantWorkstation>
{
PagedInfo<PlantWorkstationDto> GetList(PlantWorkstationQueryDto parm);
PlantWorkstation GetInfo(int WorkstationId);
PlantWorkstation AddPlantWorkstation(PlantWorkstation parm);
int UpdatePlantWorkstation(PlantWorkstation parm);
}
}