### **go null 值的使用**
```
"gopkg.in/guregu/null.v4"
type User struct {
????????UserName string `json:"userName,omitempty"`
????????Price null.Int `json:"price"`
????????Gender null.Float `json:"gender"`
????????Num null.Int `json:"num"`
????????Enable null.Bool `json:"enable"`
????????Comment null.String `json:"comment"`
????????CreateTime null.Time `json:"create_time"`
????????UpdateTime null.Time `json:"update_time"`
????????Desc sql.NullString `json:"desc"` // 無(反)序列化功能
}
```