We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
请为所有的属性与方法补充文档注释。
要求:
@Resource
RoleController
角色 控制器
@
是否有部分注释需要保持英文,请讨论。
示例:
/** * 角色 控制器 * * @author AkagiYui */ @RestController @RequestMapping("/role") public class RoleController { @Resource private RoleService roleService; /** * 获取角色信息 * * @return 角色信息 列表 */ @RequestMapping({"/", ""}) @PreAuthorize("permitAll()") public List<RoleInfoResponse> getRoles() { return roleService.getAllRoles(); } }
The text was updated successfully, but these errors were encountered:
我喜欢构造方法注入
Sorry, something went wrong.
No branches or pull requests
请为所有的属性与方法补充文档注释。
要求:
@Resource
注解的属性可不添加文档注释。RoleController
注释角色 控制器
。@
开始的行间插入一个空行。是否有部分注释需要保持英文,请讨论。
示例:
The text was updated successfully, but these errors were encountered: