系统管理feign

This commit is contained in:
efren
2025-07-28 11:24:54 +08:00
parent a1fe1044ef
commit deb9d58130
2 changed files with 9 additions and 0 deletions

View File

@ -53,6 +53,10 @@ public interface SystemClient {
@PostMapping("/v1/supplieruser/register")
BaseResponse<SysSupplierUser> register(@ApiParam(value = "注册信息", required = true) @RequestBody @Valid SupplierRegistrationVO registrationVO);
@ApiOperation("修改供应商用户信息")
@PostMapping("/v1/supplieruser/update")
BaseResponse<Boolean> update(@ApiParam(value = "供应商用户信息", required = true) @RequestBody SysSupplierUser sysSupplierUser);
// -----------------------组织接口-----------------------
@ApiOperation("查询组织信息(当前组织及下级组织列表)")
@GetMapping("/v1/sysorg/queryOrgWithChildren")

View File

@ -40,6 +40,11 @@ public class SystemClientFallback implements SystemClient {
return null;
}
@Override
public BaseResponse<Boolean> update(SysSupplierUser sysSupplierUser) {
return null;
}
@Override
public BaseResponse<List<SysOrg>> getOrgWithChildren(SysOrg sysOrg) {
return null;