operationHisDao.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package dao
  2. import (
  3. "time"
  4. )
  5. // OperationHistory 操作记录
  6. type OperationHistory struct {
  7. ID int `gorm:"primary_key" json:"id"` //编号
  8. OperationType int `gorm:"type:int" json:"operationType"` //操作类型
  9. ModuleType int `gorm:"type:int" json:"moduleType"` //操作模块
  10. DeviceType int `gorm:"type:int" json:"deviceType"` //操作模块
  11. Object string `gorm:"type:varchar(48)" json:"object"` //操作对象 一般为设备ID+Name
  12. Result int `gorm:"type:int" json:"result"` //0 成功 1失败
  13. HandleUserId int `gorm:"type:int" json:"handleUserId"` //操作用户ID
  14. HandleTime time.Time `gorm:"type:timestamp" json:"handleTime"` //操作时间
  15. TenantId string `gorm:"type:varchar(12)" json:"tenantId"` //租户ID
  16. }
  17. func (OperationHistory) TableName() string {
  18. return "operation_history"
  19. }
  20. func (c *OperationHistory) Create() error {
  21. return Db.Model(&c).Save(&c).Error
  22. }
  23. func (c OperationHistory) GetHistories(offset, limit int) ([]OperationHistory, int64, error) {
  24. var list []OperationHistory
  25. var counts int64
  26. db := Db.Model(&c)
  27. if c.OperationType > 0 {
  28. db = db.Where("operation_type = ?", c.OperationType)
  29. }
  30. if c.ModuleType > 0 {
  31. db = db.Where("module_type = ?", c.ModuleType)
  32. }
  33. if c.Object != "" {
  34. db = db.Where("object like ?", "%"+c.Object+"%")
  35. }
  36. err := db.Order("handle_time DESC").Offset(offset).Limit(limit).Find(&list).Error
  37. db1 := Db.Model(&c)
  38. db1.Count(&counts)
  39. return list, counts, err
  40. }