2023-11-21 19:01:41 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2023-11-23 08:31:14 +08:00
|
|
|
|
using ZR.Model.mes.pro;
|
2023-11-21 19:01:41 +08:00
|
|
|
|
using ZR.Model.MES.qu;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace ZR.Service.mes.qu.IService
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IQuRoughService
|
|
|
|
|
|
{
|
2023-11-24 08:45:24 +08:00
|
|
|
|
public (List<ProWorkorder>, int) GetWorkorderList(int pageNum, int pageSize, int year, int week, int date, int isSchedule);
|
2023-11-21 19:01:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|