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