コード例 #1
0
ファイル: RoleController.cs プロジェクト: LeoLcy/LeoProject
        public async Task <ApiResult> GetOne([FromQuery] int id = 0)
        {
            var model = await _sysRoleService.GetByIdAsync(id);

            return(Success(model));
        }