1、调整导入运单

2、调整对账
This commit is contained in:
2026-09-10 22:50:00 +08:00
parent e7d7e61846
commit 93c7e6f8f5
33 changed files with 553 additions and 22 deletions
@@ -57,6 +57,7 @@ public interface IUserClient {
String USER_BY_ACCOUNT = API_PREFIX + "/user-by-account";
String USER_AUTH_INFO = API_PREFIX + "/user-auth-info";
String SAVE_USER = API_PREFIX + "/save-user";
String UPDATE_USER = API_PREFIX + "/update-user";
String SAVE_IAM_USER = API_PREFIX + "/save-iam-user";
String REGISTER_USER = API_PREFIX + "/register-user";
String REMOVE_USER = API_PREFIX + "/remove-user";
@@ -150,6 +151,15 @@ public interface IUserClient {
@PostMapping(SAVE_USER)
R<Boolean> saveUser(@RequestBody User user);
/**
* 更新用户
*
* @param user 用户实体
* @return
*/
@PostMapping(UPDATE_USER)
R<Boolean> updateUser(@RequestBody User user);
/**
* 新建IAM用户
*