package models import ( "rdluck_tools/orm" "time" ) type ReportAudioRecord struct { Id int `orm:"column(id);pk"` UserId int `description:"用户id"` ReportId int `description:"报告id"` CreateTime time.Time `description:"创建时间"` } //添加报告音频阅读记录 func AddReportAudioRecord(item *ReportAudioRecord) (err error) { o := orm.NewOrm() o.Using("rddp") _, err = o.Insert(item) return }