33 lines
856 B
C#
33 lines
856 B
C#
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();
|
|
|
|
|
|
}
|
|
}
|