41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
using DOAN.Model.JobKanban;
|
|
using DOAN.Model.MES.base_;
|
|
using DOAN.Model.MES.group;
|
|
using DOAN.Model.MES.product;
|
|
using DOAN.Model.MES.product.Dto;
|
|
using NPOI.SS.Formula.Functions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|
|
|
namespace DOAN.Service.JobKanban.IService
|
|
{
|
|
public interface ILoginOrSetService
|
|
{
|
|
|
|
List<BaseGroup> GetGroupList();
|
|
List<BaseWorkRoute> GetRouteList();
|
|
List<ProWorkorderDto4> GetWorkOrderList(DateTime today, string LineCode);
|
|
List<ProWorkorderDto4> GetWorkOrderListNoFinish(DateTime today, string LineCode);
|
|
|
|
|
|
|
|
ProWorkorderDto4 GetWorkOrderDetail(string workorder);
|
|
|
|
int StartWorkOrder(string workorder);
|
|
int FinishWorkOrder(ProReportwork reportWorkDto);
|
|
|
|
KanbanInfo GetKanbanNum(DateTime today, string LineCode);
|
|
|
|
List<GroupSchedule> ListGroupByDate(DateTime date);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|