Commit 75be5887d73819eed97f65ae3e588526bfb4ca66
1 parent
93b70f0f
V2.0 获取用户共通方法变更
Showing
2 changed files
with
5 additions
and
2 deletions
V2.0 版本升级日志.txt
... | ... | @@ -79,4 +79,7 @@ v1.1升级到v2.0 升级不兼容问题 |
79 | 79 | } |
80 | 80 | |
81 | 81 | 5.所有页面样式没有scoped的加上 |
82 | - <style scoped> | |
83 | 82 | \ No newline at end of file |
83 | + <style scoped> | |
84 | + | |
85 | + 6.获取用户共通方法变更 | |
86 | + V2.0版本: LoginUser sysUser = (LoginUser)SecurityUtils.getSubject().getPrincipal(); | |
84 | 87 | \ No newline at end of file |
... | ... |
jeecg-boot/jeecg-boot-module-system/src/main/resources/jeecg/code-template/one/java/${bussiPackage}/${entityPackage}/controller/${entityName}Controller.javai
... | ... | @@ -42,7 +42,7 @@ import io.swagger.annotations.ApiOperation; |
42 | 42 | * @Version: V1.0 |
43 | 43 | */ |
44 | 44 | @Slf4j |
45 | -@Api("${tableVo.ftlDescription}") | |
45 | +@Api(tags="${tableVo.ftlDescription}") | |
46 | 46 | @RestController |
47 | 47 | @RequestMapping("/${entityPackage}/${entityName?uncap_first}") |
48 | 48 | public class ${entityName}Controller { |
... | ... |