企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
### **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"` // 无(反)序列化功能 } ```