shgx_tz_mom/ZR.Service/mes/pro/IService/IProWorkorderServiceV2.cs
2024-01-22 15:22:56 +08:00

42 lines
948 B
C#

using Microsoft.AspNetCore.Http;
using Microsoft.VisualBasic;
using Model.DBModel;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZR.Model.MES.op.DTO;
using ZR.Model.MES.pro;
using ZR.Model.MES.pro.DTO;
namespace ZR.Service.mes.pro.IService
{
public interface IProWorkorderServiceV2
{
public (List<ProWorkorder_v2>, int) GetWorkorderList(int pageNum, int pageSize, int year, int week, int date, int isSchedule);
public string ImportExceldata(List<ProWorkorder_v2> proWorklplans);
public (string, string) ExportExceldata(int year, int week, int date);
public int DeleteAllWorkorder(int year, int week, int date);
public int AddWorkOrder(ProWorkorder_v2 workorder);
public int DeleteWorkOrder(string id);
public int UpdateWorkOrder(ProWorkorder_v2 workorder);
}
}