You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- //
-
-
-
-
-
-
-
-
- namespace SafeCampus.Web.Core;
-
- /// <summary>
- /// 模块管理控制器
- /// </summary>
- [ApiDescriptionSettings(Tag = "模块管理")]
- [Route("sys/limit/[controller]")]
- [SuperAdmin]
- public class ModuleController : BaseController
- {
- private readonly IModuleService _moduleService;
-
- public ModuleController(IModuleService moduleService)
- {
- _moduleService = moduleService;
- }
-
- /// <summary>
- /// 模块分页查询
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- [HttpGet("page")]
- public async Task<dynamic> Page([FromQuery] ModulePageInput input)
- {
- return await _moduleService.Page(input);
- }
-
- /// <summary>
- /// 添加模块
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- [HttpPost("add")]
- [DisplayName("添加模块")]
- public async Task Add([FromBody] ModuleAddInput input)
- {
- await _moduleService.Add(input);
- }
-
- /// <summary>
- /// 修改模块
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- [HttpPost("edit")]
- [DisplayName("修改模块")]
- public async Task Edit([FromBody] ModuleEditInput input)
- {
- await _moduleService.Edit(input);
- }
-
- /// <summary>
- /// 删除模块
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- [HttpPost("delete")]
- [DisplayName("删除模块")]
- public async Task Delete([FromBody] BaseIdListInput input)
- {
- await _moduleService.Delete(input);
- }
-
- /// <summary>
- /// 获取模块详情
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- [HttpGet("detail")]
- public async Task<dynamic> Detail([FromQuery] BaseIdInput input)
- {
- return await _moduleService.Detail(input);
- }
- }
|