jeecgboot修改非超管用户不可以看见,系统超管用户和超管角色
1.修改系统用户查询接口,SysUserController-108行添加 LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); String account =sysUser.getUsername(); //登录用户不是超管,不显示超管…
1.修改系统用户查询接口,SysUserController-108行添加 LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); String account =sysUser.getUsername(); //登录用户不是超管,不显示超管…
1.初始化jsapi 后台 /** * 获取微信JSAPI初始化配置 * @return */ @GetMapping("/getWxconfig") public Result getWxconfig(@RequestParam String url) throws NoSuchAlgorithmE…
阿里巴巴Java编码指南(XenoAmess TPM) 安装方式 File>setting>plugin>Marketplace 搜索p3c
mapper package org.jeecg.modules.wenlv.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; impor…
public Result getPayNotify(HttpServletRequest request,@RequestBody JSONObject jsonObject ){ String signature = request.getHeader("Wechatpay-Signature"…
public ResponseEntity getTaizhangZip() throws IOException { SimpleDateFormat simpleDateFormat = new Simpl…
在使用LIKE关键字模糊查找的时候,参数需要使用LIKE '${name}'而不能使用#{name}, ${name}'和#{name}区别: #{name}解析后会产生一个单号,和JDBC里面的PreparedStatement的用法啊一样,向上面这种用…