17 lines
398 B
C#
17 lines
398 B
C#
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.qu;
|
|
|
|
|
|
namespace ZR.Service.mes.qu.IService
|
|
{
|
|
public interface IQuRoughService
|
|
{
|
|
public (List<ProWorkorder>, int) GetWorkorderList(int pageNum, int pageSize, int year, int week, int date, int isSchedule);
|
|
}
|
|
}
|