business_sys_interaction_log.go 2.4 KB

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