edbinfo_send_msg_record.go 376 B

12345678910111213141516171819
  1. package models
  2. import (
  3. "eta/eta_task/global"
  4. "eta/eta_task/utils"
  5. "time"
  6. )
  7. type EdbinfoSendMsgRecord struct {
  8. Id int `gorm:"column:id;primaryKey;autoIncrement"`
  9. UserId int
  10. TradeCode string
  11. CreateTime time.Time
  12. }
  13. func AddEdbinfoSendMsgRecord(item *EdbinfoSendMsgRecord) (err error) {
  14. err = global.DbMap[utils.DbNameReport].Create(item).Error
  15. return
  16. }