32 lines
743 B
C#
32 lines
743 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 WorkFkRouteCode);
|
|
|
|
List<BaseWorkStationDto3> GetworkStation(string WorkorderId, int WorkProcessID);
|
|
|
|
int UpdateSelectedWorkstation(ProRelWorkorderLineBodyDto lineBodyDto);
|
|
|
|
|
|
int DefaultSelected(string WorkorderId);
|
|
|
|
|
|
}
|
|
}
|