business_sys_interaction_log.go 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package data_manage
  2. import (
  3. "eta_gn/eta_task/global"
  4. "time"
  5. )
  6. // BusinessSysInteractionLog 商家系统交互记录表
  7. type BusinessSysInteractionLog struct {
  8. ID uint32 `orm:"column(id);pk" gorm:"primaryKey;column:id;type:int(10) unsigned;not null" json:"-"`
  9. InteractionKey string `gorm:"unique;column:interaction_key;type:varchar(128);not null;default:''" json:"interactionKey"` // 记录Key
  10. InteractionVal string `gorm:"column:interaction_val;type:text;default:null" json:"interactionVal"` // 记录值
  11. Remark string `gorm:"column:remark;type:varchar(128);not null;default:''" json:"remark"` // 备注
  12. ModifyTime time.Time `gorm:"column:modify_time;type:datetime;default:null" json:"modifyTime"` // 修改日期
  13. CreateTime time.Time `gorm:"column:create_time;type:datetime;default:null" json:"createTime"` // 创建时间
  14. }
  15. // TableName get sql table name.获取数据库表名
  16. func (m *BusinessSysInteractionLog) TableName() string {
  17. return "business_sys_interaction_log"
  18. }
  19. // BusinessSysInteractionLogColumns get sql column name.获取数据库列名
  20. var BusinessSysInteractionLogColumns = struct {
  21. ID string
  22. InteractionKey string
  23. InteractionVal string
  24. Remark string
  25. ModifyTime string
  26. CreateTime string
  27. }{
  28. ID: "id",
  29. InteractionKey: "interaction_key",
  30. InteractionVal: "interaction_val",
  31. Remark: "remark",
  32. ModifyTime: "modify_time",
  33. CreateTime: "create_time",
  34. }
  35. // Create 添加数据
  36. func (m *BusinessSysInteractionLog) Create() (err error) {
  37. //o := orm.NewOrm()
  38. //id, err := o.Insert(m)
  39. //if err != nil {
  40. // return
  41. //}
  42. //m.ID = uint32(id)
  43. err = global.DEFAULT_DmSQL.Create(m).Error
  44. if err != nil {
  45. return
  46. }
  47. return
  48. }
  49. // Update 更新数据
  50. func (m *BusinessSysInteractionLog) Update(cols []string) (err error) {
  51. //o := orm.NewOrm()
  52. //_, err = o.Update(m, cols...)
  53. err = global.DEFAULT_DmSQL.Select(cols).Updates(m).Error
  54. return
  55. }
  56. var BinlogFileNameKey = "binlog_filename" // binlog文件名
  57. var BinlogPositionKey = "binlog_binlog_position" // binlog位置
  58. var CrmIndexLastUpdateTime = "crm_index_update_time" // crm数据
  59. // GetBusinessSysInteractionLogByKey 根据记录key获取数据
  60. func GetBusinessSysInteractionLogByKey(key string) (item *BusinessSysInteractionLog, err error) {
  61. //o := orm.NewOrm()
  62. sql := `SELECT * FROM business_sys_interaction_log WHERE 1=1 AND interaction_key = ? LIMIT 1`
  63. //err = o.Raw(sql, key).QueryRow(&item)
  64. err = global.DEFAULT_DmSQL.Raw(sql, key).First(&item).Error
  65. return
  66. }