|
@@ -400,6 +400,14 @@ namespace OASystem.API.Controllers
|
|
|
}
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+ [HttpPost]
|
|
|
+ [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
|
|
|
+ public async Task<IActionResult> AddUser(AddUserDto dto)
|
|
|
+ {
|
|
|
+ int id = 0;
|
|
|
+ return Ok(JsonView(true, "添加成功!", new { Id = id }));
|
|
|
+ }
|
|
|
#endregion
|
|
|
|
|
|
}
|