生产进度看板
This commit is contained in:
32
ZR.Service/BI/IService/IProductionDashboardService.cs
Normal file
32
ZR.Service/BI/IService/IProductionDashboardService.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using Model.DBModel;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using ZR.Model.MES.pro;
|
||||
using ZR.Model.MES.pro.DTO;
|
||||
|
||||
namespace ZR.Service.BI.IService
|
||||
{
|
||||
public interface IProductionDashboardService
|
||||
{
|
||||
/// <summary>
|
||||
/// 查询今日未开始的生产工单
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
List<ProWorkorder_v2> TodayNoStartProWorkorder();
|
||||
/// <summary>
|
||||
/// 查询今日正在生产的工单
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
List<ProWorkorder_v2> TodayProductiongProWorkorder();
|
||||
/// <summary>
|
||||
/// 查询今日已完成的生产工单
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
List<ProWorkorder_v2> TodayFinishProductionProWorkorder();
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user