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

27 lines
772 B
C#
Raw Normal View History

using ZR.Model.MES.pro;
2025-06-10 15:53:34 +08:00
using ZR.Model.MES.qc.DTO;
2025-06-10 10:41:30 +08:00
namespace ZR.Service.BI.IService
{
public interface IProductionDashboardService
2025-06-10 10:41:30 +08:00
{
/// <summary>
/// 查询今日未开始的生产工单
/// </summary>
/// <returns></returns>
List<ProWorkorder_v2> TodayNoStartProWorkorder();
/// <summary>
/// 查询今日正在生产的工单
/// </summary>
/// <returns></returns>
List<ProWorkorder_v2> TodayProductiongProWorkorder();
/// <summary>
/// 查询今日已完成的生产工单
/// </summary>
/// <returns></returns>
List<ProWorkorder_v2> TodayFinishProductionProWorkorder();
2025-06-10 15:53:34 +08:00
QcCurrentWorkorderDto GetProductingWorkorder();
2025-06-10 10:41:30 +08:00
}
}