2023-11-24 17:16:49 +08:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
using System;
|
2023-11-15 14:38:10 +08:00
|
|
|
|
using ZR.Model.mes.pro;
|
2023-11-27 16:28:16 +08:00
|
|
|
|
using ZR.Model.MES.pro.DTO;
|
2023-11-15 14:38:10 +08:00
|
|
|
|
|
|
|
|
|
|
namespace ZR.Service.mes.pro.IService
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IProWorkorderService
|
|
|
|
|
|
{
|
2024-06-07 11:04:26 +08:00
|
|
|
|
public (List<ProWorkorder>, int) GetWorkorderList(int pageNum, int pageSize, int year, int week, int date, int isSchedule);
|
2023-11-16 16:13:30 +08:00
|
|
|
|
|
|
|
|
|
|
public int SetWorkorderSechedule(string id, DateTime arrange_starttime, DateTime arrange_endtime);
|
|
|
|
|
|
|
|
|
|
|
|
public int ResetWorkorderSechedule(string id);
|
2023-11-20 08:50:45 +08:00
|
|
|
|
|
|
|
|
|
|
public int SortWorkorderSchedule(string id, int sort);
|
2023-11-23 15:00:56 +08:00
|
|
|
|
|
2023-11-24 17:16:49 +08:00
|
|
|
|
public int ReleaseProduction(string id, HttpContext httpContext);
|
2023-11-27 16:28:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
2024-06-07 11:04:26 +08:00
|
|
|
|
public GanttTaskDTO GetGanttList(int year, int week, int date);
|
2023-11-27 16:28:16 +08:00
|
|
|
|
|
2023-11-15 14:38:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|