系统管理feign
This commit is contained in:
@ -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")
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user