err: = db.Where ("id =?", id). First (& activity) .Error
{"id": 30, "name": null}
the name field of the database is null, but the name in & activity will become "", how to keep it still null
type Activity struct {
Id int
name string
}