shgx_tz_mom/ZR.Service/BI/IService/IProductionDashboardService.cs

33 lines
856 B
C#
Raw Normal View History

2025-06-10 10:41:30 +08:00
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();
}
}