From 481e4bef4be32a5a9754d01faf80bf0bc4e14951 Mon Sep 17 00:00:00 2001 From: 啊鑫 <t2856754968@163.com> Date: 星期三, 28 八月 2024 14:23:16 +0800 Subject: [PATCH] 生产领料单 --- MESApplication/Controllers/Base/LoginController.cs | 19 ++++++++++++++++++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git a/MESApplication/Controllers/Base/LoginController.cs b/MESApplication/Controllers/Base/LoginController.cs index 58de874..aede14c 100644 --- a/MESApplication/Controllers/Base/LoginController.cs +++ b/MESApplication/Controllers/Base/LoginController.cs @@ -7,10 +7,18 @@ namespace MESApplication.Controllers.Base; +/// <summary> +/// 鐢ㄦ埛 +/// </summary> [Route("api/[controller]")] [ApiController] public class LoginController : ControllerBase { + /// <summary> + /// 鐧诲綍 + /// </summary> + /// <param name="model"></param> + /// <returns></returns> [HttpPost("login")] public ResponseResult login([FromBody] LoginModel model) { @@ -34,6 +42,11 @@ } } + /// <summary> + /// 閲嶈瀵嗙爜 + /// </summary> + /// <param name="data"></param> + /// <returns></returns> [HttpPost("resetPassword")] public ResponseResult resetPassword([FromBody] JObject data) { @@ -66,7 +79,11 @@ } } - + /// <summary> + /// 鐢ㄦ埛鑿滃崟 + /// </summary> + /// <param name="data"></param> + /// <returns></returns> [HttpPost("getUserMenu")] public ResponseResult getUserMenu([FromBody] JObject data) { -- Gitblit v1.9.3