订单大屏

This commit is contained in:
卢江海
2025-03-26 15:19:34 +08:00
parent e11cbd080d
commit e41c2aa6de
11 changed files with 153 additions and 49 deletions

View File

@@ -0,0 +1,22 @@
using DOAN.Model.MES.order;
using DOAN.Model.MES.order.Dto;
using DOAN.Model.MES.SmartScreen.Order;
using Infrastructure.Attribute;
using Microsoft.AspNetCore.Http;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Service.MES.SmartScreen.Order.IService
{
/// <summary>
/// 采购订单service接口
/// </summary>
public interface IOrderSmartService : IBaseService<OrderPurchase>
{
LargeScreenOrderDto GetLargeScreenOrder();
}
}