src/main/java/org/springblade/modules/information/entity/Information.java
@@ -144,6 +144,6 @@ private String representativecell; private String contacts; private String contactscell; private String businessLicense; private String licence; } src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml
@@ -26,6 +26,8 @@ <result column="representativecell" property="representativecell"/> <result column="contacts" property="contacts"/> <result column="contactscell" property="contactscell"/> <result column="businessLicense" property="businessLicense"/> <result column="licence" property="licence"/> </resultMap> @@ -861,7 +863,7 @@ FROM blade_user u LEFT JOIN blade_dept d ON d.id = u.dept_id LEFT JOIN sys_jurisdiction j ON j.id = u.jurisdiction WHERE u.examination_type = 1 and is_deleted=0 WHERE u.examination_type = 1 and u.is_deleted=0 <if test="jurisdiction!=null and jurisdiction!='' and jurisdiction!='1123598813738675201'"> and u.jurisdiction =#{jurisdiction} </if> src/main/java/org/springblade/modules/jurisdiction/controller/JurisdictionController.java
@@ -130,7 +130,7 @@ /** * 懒加载获取部门树形结构 */ @GetMapping("/lazy-trees") @PostMapping("/lazy-trees") @ApiOperation(value = "懒加载树形结构", notes = "树形结构") public R<List<JurisdictionVO>> lazyTrees() { List<JurisdictionVO> tree = jurisdictionService.lazyTrees();