package data_manage import ( "eta_gn/eta_api/global" "time" ) type SearchKeyword struct { Id int `orm:"column(id);pk"` KeyWord string CreateTime time.Time } func AddSearchKeyword(item *SearchKeyword) (err error) { //o := orm.NewOrmUsingDB("data") //_, err = o.Insert(item) err = global.DmSQL["data"].Create(item).Error return }