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