lightRecordDao.go 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package dao
  2. import (
  3. "time"
  4. )
  5. type LightRecord struct {
  6. Id int `gorm:"column:id;primary_key;AUTO_INCREMENT; comment:编号" json:"id"`
  7. GroupId int `gorm:"column:group_id; comment:灯杆分组ID" json:"groupId"`
  8. GroupName string `gorm:"column:group_name; comment:灯杆分组名" json:"groupName"`
  9. LampPoleId int `gorm:"column:lamp_pole_id; comment:灯杆ID" json:"lampPoleId"`
  10. LampPoleName string `gorm:"column:lamp_pole_name; comment:灯杆名称" json:"lampPoleName"`
  11. LampPoleSn string `gorm:"column:lamp_pole_sn; comment:灯杆编码" json:"lampPoleSn"`
  12. LightControlId int `gorm:"column:light_control_id; comment:灯控ID" json:"lightControlId"`
  13. LightControlName string `gorm:"column:light_control_name; comment:灯控名称" json:"lightControlName"`
  14. LightControlSn string `gorm:"column:light_control_sn; comment:灯控编号" json:"lightControlSn"`
  15. Luminance int `gorm:"column:luminance; comment:亮度" json:"luminance"`
  16. LightingState int `gorm:"column:lighting_state;default:0; comment:亮灯状态:0-关闭,1-开启" json:"lightingState"`
  17. StartTime time.Time `gorm:"column:start_time; comment:亮灯开始时间; type:datetime" json:"startTime"`
  18. EndTime time.Time `gorm:"column:end_time; comment:亮灯结束时间; type:datetime" json:"endTime"`
  19. CountTime int `gorm:"column:count_time; comment:亮灯时长(分钟)" json:"countTime"`
  20. TenantId string `gorm:"column:tenant_id; comment:租户ID" json:"tenantId"`
  21. CreateTime time.Time `gorm:"column:create_time;NOT NULL; comment:创建日期;type:datetime" json:"createTime"`
  22. UpdateTime time.Time `gorm:"column:update_time;default:CURRENT_TIMESTAMP; comment:新时间 默认为当前时间;type:datetime" json:"updateTime"`
  23. IsDeleted int `gorm:"column:is_deleted;default:0; comment:是否删除:0-否,1-删除" json:"isDeleted"`
  24. }
  25. func (l LightRecord) TableName() string {
  26. return "device_lamp_events_view"
  27. }
  28. // GetRecords 查记录
  29. func (c LightRecord) GetRecords(offset int, limit int, start, end, searchValue string, groupId int) ([]LightRecord, int64, error) {
  30. var LightRecords []LightRecord
  31. db := Db.Model(&c)
  32. if groupId > 0 {
  33. db.Where("group_id=?", groupId)
  34. }
  35. if searchValue != "" {
  36. db = db.Where("light_control_sn like ? or lamp_pole_name like ?", "%"+searchValue+"%", "%"+searchValue+"%")
  37. }
  38. if start != "" {
  39. start = start + " 00:00:00"
  40. end = end + " 23:59:59"
  41. db = db.Where("start_time >=? and start_time <= ?", start, end)
  42. }
  43. db = db.Where("is_deleted = 0")
  44. err := db.Order("id desc").Offset(offset).Limit(limit).Find(&LightRecords).Error
  45. var count int64
  46. db.Count(&count)
  47. return LightRecords, count, err
  48. }
  49. func (l LightRecord) Get() (LightRecord, error) {
  50. var lightRecord LightRecord
  51. err := Db.Model(&l).First(&lightRecord).Error
  52. return lightRecord, err
  53. }