This commit is contained in:
qianhao.xu
2024-11-07 21:27:56 +08:00
parent 54840baf1b
commit 7038d8a4d6
4 changed files with 61 additions and 24 deletions

View File

@@ -38,6 +38,14 @@ namespace DOAN.Admin.WebApi.Controllers.PBL
return SUCCESS(response);
}
[HttpGet("test_plc")]
public IActionResult TestPLC(int num)
{
var response = mesInteraction.TestPLC(num);
return SUCCESS(response);
}
}