Files
shanghaigangxiangtuzhuangMES/ZR.Service/mes/pro/IService/IProWorkorderService.cs

32 lines
886 B
C#
Raw Normal View History

2023-11-24 17:16:49 +08:00
using Microsoft.AspNetCore.Http;
2023-11-27 16:28:16 +08:00
using Microsoft.VisualBasic;
2023-11-24 17:16:49 +08:00
using System;
2023-11-15 14:38:10 +08:00
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZR.Model.mes.pro;
using ZR.Model.MES.op.DTO;
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
{
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
public GanttTaskDTO GetGanttList(int year,int week,int date);
2023-11-15 14:38:10 +08:00
}
}