|
@@ -84,6 +84,7 @@ public class AccountTempController {
|
|
|
@PostMapping("/post")
|
|
@PostMapping("/post")
|
|
|
public Result<String> post(@RequestBody Account account) {
|
|
public Result<String> post(@RequestBody Account account) {
|
|
|
accountMapper.insert(account);
|
|
accountMapper.insert(account);
|
|
|
|
|
+ account.setType(3);
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult();
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult();
|
|
|
}
|
|
}
|
|
|
|
|
|