2024-07-17 17:30:44 +08:00
|
|
|
|
using DOAN.Model;
|
2024-07-18 09:16:01 +08:00
|
|
|
|
using DOAN.Model.MES.base_.Dto;
|
2024-07-17 17:30:44 +08:00
|
|
|
|
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
|
|
|
|
|
|
{
|
|
|
|
|
|
|
2024-07-18 10:17:02 +08:00
|
|
|
|
public interface IProWorkorderScheduleService : IBaseService<ProWorkorder>
|
2024-07-17 17:30:44 +08:00
|
|
|
|
{
|
|
|
|
|
|
PagedInfo<ProWorkorderDto> GetList(ProWorkorderQueryDto parm);
|
2024-07-18 09:16:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-09-04 16:43:29 +08:00
|
|
|
|
List<BaseWorkProcessesDto> GetworkProcess(int WorkFkRouteCode);
|
2024-07-18 09:16:01 +08:00
|
|
|
|
|
2024-07-18 15:00:34 +08:00
|
|
|
|
List<BaseWorkStationDto3> GetworkStation(string WorkorderId, int WorkProcessID);
|
|
|
|
|
|
|
|
|
|
|
|
int UpdateSelectedWorkstation(ProRelWorkorderLineBodyDto lineBodyDto);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int DefaultSelected(string WorkorderId);
|
2024-07-18 09:16:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
2024-07-17 17:30:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|