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