Browse Source

部门新增字段显示标识

anderx 3 years ago
parent
commit
0ec4d01e72

+ 1 - 1
src/main/java/com/goafanti/organization/controller/AdminOrganizationController.java

@@ -80,7 +80,7 @@ public class AdminOrganizationController extends BaseApiController{
 	@RequestMapping(value = "/selectAllById" , method = RequestMethod.POST)
 	public Result selectAllById(String id){
 		Result res = new Result();
-		res.data(organizationService.selectAllById(id)) ;
+		res.data(organizationService.selectAllById(id));
 		return res;
 	}
 	/**修改信息**/