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
{
///
/// 查询今日未开始的生产工单
///
///
List TodayNoStartProWorkorder();
///
/// 查询今日正在生产的工单
///
///
List TodayProductiongProWorkorder();
///
/// 查询今日已完成的生产工单
///
///
List TodayFinishProductionProWorkorder();
}
}