20 lines
466 B
C#
20 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using DOAN.Model.MES.base_;
|
|
using DOAN.Model.MES.product;
|
|
namespace DOAN.Service.JobKanban.IService
|
|
{
|
|
public interface IWorkorderProgressService
|
|
{
|
|
|
|
List<BaseWorkRoute> GetRoutes();
|
|
List<BaseGroup> GetGroups();
|
|
|
|
|
|
List<ProWorkorder> GetWorkOrderList(string group_code, string line_code, DateTime handleDate);
|
|
}
|
|
}
|