系统管理feign
This commit is contained in:
@ -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")
|
||||
|
@ -36,4 +36,7 @@ public class SysOrgVO extends SysOrg implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "树形结构所有部门ID")
|
||||
private String allDepartmentId;
|
||||
|
||||
@ApiModelProperty(value = "所属公司名称")
|
||||
private String cuCompanyName;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user