25 lines
709 B
C#
25 lines
709 B
C#
using Microsoft.AspNetCore.Http;
|
|
using System;
|
|
using ZR.Model.mes.pro;
|
|
using ZR.Model.MES.pro.DTO;
|
|
|
|
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);
|
|
|
|
public int SetWorkorderSechedule(string id, DateTime arrange_starttime, DateTime arrange_endtime);
|
|
|
|
public int ResetWorkorderSechedule(string id);
|
|
|
|
public int SortWorkorderSchedule(string id, int sort);
|
|
|
|
public int ReleaseProduction(string id, HttpContext httpContext);
|
|
|
|
|
|
public GanttTaskDTO GetGanttList(int year, int week, int date);
|
|
|
|
}
|
|
}
|