zhuangpei-mesbackend/DOAN.Service/MES/product/IService/IProWorkorderScheduleService.cs
2024-07-18 10:17:02 +08:00

28 lines
649 B
C#

using DOAN.Model;
using DOAN.Model.MES.base_.Dto;
using DOAN.Model.MES.product;
using DOAN.Model.MES.product.Dto;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Service.MES.product.IService
{
public interface IProWorkorderScheduleService : IBaseService<ProWorkorder>
{
PagedInfo<ProWorkorderDto> GetList(ProWorkorderQueryDto parm);
List<BaseWorkProcessesDto> GetworkProcess(int WorkRouteId);
List<BaseWorkStationDto> GetworkStation(int WorkProcessID);
List<BaseDeviceDto> GetWorkDevice(int WorkStationID);
}
}