19 lines
456 B
C#
19 lines
456 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using DOAN.Admin.WebApi.Filters;
|
|
using DOAN.Infrastructure;
|
|
using DOAN.Service.MES.Console_.IService;
|
|
|
|
namespace DOAN.Admin.WebApi.Controllers.MES.Console_;
|
|
|
|
/// <summary>
|
|
/// 控制台 显示概览信息
|
|
/// </summary>
|
|
public class ConsoleController : BaseController
|
|
{
|
|
IConsoleService consoleService=null;
|
|
|
|
ConsoleController(IConsoleService consoleService)
|
|
{
|
|
this.consoleService=consoleService;
|
|
}
|
|
} |