Explorar o código

业务属性改造

wangchangsheng %!s(int64=2) %!d(string=hai) anos
pai
achega
54b544deb7

+ 1 - 1
ims-service/ims-eval/src/main/java/com/ims/eval/controller/BinSectionController.java

@@ -45,7 +45,7 @@ public class BinSectionController {
 	public R list(@RequestParam(value = "id", required = false) String id,
 				  @RequestParam(value = "sectionName", required = false) String sectionName,
 				  @RequestParam(value = "sectionCode", required = false) String sectionCode) {
-		List<BinSection> list = binSectionService.list(id, sectionName, sectionCode);
+		List<BinSection> list =CacheContext.bsnList;
 		return R.ok().data(list);
 	}
 

+ 2 - 2
ims-service/ims-eval/src/main/java/com/ims/eval/entity/BinSection.java

@@ -56,8 +56,8 @@ public class BinSection extends Model {
 	/**
 	 * 父id
 	 */
-	@TableField(exist = false)
-	private List<BinSection> children;
+//	@TableField(exist = false)
+//	private List<BinSection> children;
 
 
 }