系统管理feign

This commit is contained in:
efren
2025-07-30 15:52:05 +08:00
parent deb9d58130
commit 07df918174
3 changed files with 5 additions and 2 deletions

View File

@ -68,7 +68,7 @@ public interface SystemClient {
@ApiOperation("查询机构列表")
@GetMapping("/v1/sysorg/list")
BaseResponse<List<SysOrg>> getOrglist(@ApiParam(value = "查询对象数据", required = false) @SpringQueryMap SysOrg param);
BaseResponse<List<SysOrg>> getOrglist(@ApiParam(value = "查询对象数据", required = false) @SpringQueryMap SysOrgVO param);
@ApiOperation("查询所有数据(树形结构)")
@GetMapping("/v1/sysorg/queryAll")

View File

@ -36,4 +36,7 @@ public class SysOrgVO extends SysOrg implements Serializable {
@ApiModelProperty(value = "树形结构所有部门ID")
private String allDepartmentId;
@ApiModelProperty(value = "所属公司名称")
private String cuCompanyName;
}

View File

@ -56,7 +56,7 @@ public class SystemClientFallback implements SystemClient {
}
@Override
public BaseResponse<List<SysOrg>> getOrglist(SysOrg param) {
public BaseResponse<List<SysOrg>> getOrglist(SysOrgVO param) {
return null;
}