From fe59cb0e4d060664927dca75d453162deae3e17d Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期四, 12 十二月 2024 22:23:52 +0800 Subject: [PATCH] 增加产品冷却塔至bll --- Application/HStation.Application.Xhs.Core/01-project/XhsProject_Controller.cs | 30 ------------------------------ 1 files changed, 0 insertions(+), 30 deletions(-) diff --git a/Application/HStation.Application.Xhs.Core/01-project/XhsProject_Controller.cs b/Application/HStation.Application.Xhs.Core/01-project/XhsProject_Controller.cs index f8d0ce0..28c9d56 100644 --- a/Application/HStation.Application.Xhs.Core/01-project/XhsProject_Controller.cs +++ b/Application/HStation.Application.Xhs.Core/01-project/XhsProject_Controller.cs @@ -167,36 +167,6 @@ return bol; } - /// <summary> - /// 鍙戝竷 - /// </summary> - [Route("Publish@V1.0")] - [HttpPut] - public bool Publish([Required] IDInput input) - { - var bol = _service.Publish(input.ID, out string Msg); - if (!bol) - { - throw YOops.Oh(eResultCode.Alert, InternalErrorCodes.V001, Msg); - } - return bol; - } - - /// <summary> - /// 寮冪敤锛堣皑鎱庢搷浣滐級 - /// </summary> - [Route("Deprecate@V1.0")] - [HttpPut] - public bool Deprecate([Required] IDInput input) - { - var bol = _service.Deprecate(input.ID, out string Msg); - if (!bol) - { - throw YOops.Oh(eResultCode.Alert, InternalErrorCodes.V001, Msg); - } - return bol; - } - #endregion Update #region Exist -- Gitblit v1.9.3