This commit is contained in:
qianhao.xu 2024-11-07 09:34:15 +08:00
parent 923e271fac
commit 2ad62c6f0b
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ using DOAN.Admin.WebApi.Filters;
using DOAN.Infrastructure;
using DOAN.Service.MES.Console_.IService;
namespace DOAN.Admin.WebApi.Controllers.MES.Console_;
namespace DOAN.Admin.WebApi.Controllers;
/// <summary>
/// 控制台 显示概览信息
@ -12,9 +12,9 @@ namespace DOAN.Admin.WebApi.Controllers.MES.Console_;
[AllowAnonymous]
public class ConsoleController : BaseController
{
IConsoleService consoleService=null;
private readonly IConsoleService consoleService;
ConsoleController(IConsoleService consoleService)
public ConsoleController(IConsoleService consoleService)
{
this.consoleService=consoleService;
}

View File

@ -8,5 +8,5 @@ namespace DOAN.Service.MES.Console_.IService;
public interface IConsoleService : IBaseService<ProWorkorder>
{
ConsoleMoudle01 GetColorBlockKanbanInformation();
ConsoleMoudle01 GetColorBlockKanbanInformation();
}