Commit f4228619 authored by 刘林's avatar 刘林

fix(cylinder):气瓶区域信息查询

parent 0a97bcfc
...@@ -79,6 +79,17 @@ public class TzsAuthController extends BaseController { ...@@ -79,6 +79,17 @@ public class TzsAuthController extends BaseController {
} }
/** /**
* 获取用户组织机构树
*/
@TycloudOperation(ApiLevel = UserType.AGENCY)
@GetMapping(value = "/getUserReginTree")
@ApiOperation(httpMethod = "GET", value = "获取用户组织机构树", notes = "获取用户组织机构树")
public ResponseModel<Collection<RegionModel>> getUserReginTree() {
List<RegionModel> result = tzsAuthService.getUserReginTree();
return ResponseHelper.buildResponse(result);
}
/**
* 获取三级组织机构树 * 获取三级组织机构树
* *
* @return * @return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment