zhuangpei-mesbackend/MDM/Services/Plant/IService/IPlantWorkstationService.cs
gcw_MV9p2JJN a293df3710 1
2025-11-19 11:49:05 +08:00

25 lines
560 B
C#

using MDM.Model;
using MDM.Model.Plant;
using MDM.Model.Plant.Dto;
using MDM.Service;
namespace MDM.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);
}
}