// user
"passport": "john",
"password": "12345678",
"nickname": "JohnGuo",
})
if err != nil {
}
// user_detail
id, err := result.LastInsertId()
if err != nil {
}
_, err = tx.Ctx(ctx).Insert("user_detail", g.Map{
"site": "https://johng.cn",
"true_name": "GuoQiang",
})
if err != nil {
return err
}
return nil