captureUnitDao.go 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. package dao
  2. import (
  3. "time"
  4. )
  5. // CaptureUnit 抓拍单元
  6. type CaptureUnit struct {
  7. ID int `gorm:"primary_key" json:"id"` //编号
  8. CaptureName string `gorm:"type:varchar(64)" json:"captureName"` //设备名称
  9. CaptureSn string `gorm:"type:varchar(60)" json:"captureSn"` //设备序列号
  10. PointId int `gorm:"type:int" json:"pointId"` //卡口ID
  11. LampPoleId int `gorm:"type:int" json:"lampPoleId"` //灯杆ID
  12. WayName string `gorm:"type:varchar(64)" json:"wayName"` //道路名称
  13. CaptureDirection int `gorm:"type:int" json:"captureDirection"` //灯杆sn
  14. InstallTime time.Time `gorm:"type:date" json:"installTime"` //安装时间
  15. TerrainClearance float32 `gorm:"type:float(10,1);default 0.0" json:"terrainClearance"` //离地高度(米)
  16. CaptureLane string `gorm:"type:varchar(120)" json:"captureLane"` //抓拍车道
  17. VidiconPixel int `gorm:"type:int" json:"vidiconPixel"` //相机像素
  18. VidiconSpecification string `gorm:"type:varchar(255)" json:"vidiconSpecification"` //相机规格
  19. RadarCount int `gorm:"type:int" json:"radarCount"` //雷达数量
  20. RadarSpecification string `gorm:"type:varchar(255)" json:"radarSpecification"` //雷达规格
  21. SuggestSpeed int `gorm:"type:int" json:"suggestSpeed"` //雷达数量
  22. FillLightCount int `gorm:"type:int" json:"fillLightCount"` //补光灯数量
  23. FillLightSpecification string `gorm:"type:varchar(255)" json:"fillLightSpecification"` //补光灯规格
  24. PowerSpecification string `gorm:"type:varchar(255)" json:"powerSpecification"` //电源规格
  25. CaptureIp string `gorm:"type:varchar(60)" json:"captureIp"` //ip
  26. CapturePort int `gorm:"type:int" json:"capturePort"` //端口
  27. GatewayId int `gorm:"type:int" json:"gatewayId"` //网关ID
  28. GatewayName string `gorm:"type:varchar(80)" json:"gatewayName"` //网关名称
  29. GatewaySn string `gorm:"type:varchar(30)" json:"gatewaySn"` //网关编码
  30. TenantId string `gorm:"type:varchar(12)" json:"tenantId"` //租户ID
  31. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  32. CreateUser int `gorm:"type:int" json:"createUser"` //新增记录操作用户ID
  33. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  34. UpdateUser int `gorm:"type:int" json:"updateUser"` //修改用户
  35. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  36. }
  37. func (CaptureUnit) TableName() string {
  38. return "device_capture_unit"
  39. }
  40. func (c CaptureUnit) IsExistedBySN() bool {
  41. var count int64
  42. _ = Db.Model(&c).Where("capture_sn = ? and is_deleted = ?",
  43. c.CaptureSn, c.IsDeleted).Count(&count).Error
  44. return count > 0
  45. }
  46. func (c *CaptureUnit) Create() error {
  47. return Db.Model(&c).Save(&c).Error
  48. }
  49. func (c *CaptureUnit) Update() error {
  50. return Db.Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  51. }
  52. func (c *CaptureUnit) GetDevice() error {
  53. err := Db.Model(&c).Where(" id = ? ", c.ID).First(&c).Error
  54. return err
  55. }
  56. func (c CaptureUnit) GetDevices(offset, limit int) ([]CaptureUnit, int64, error) {
  57. var Captures []CaptureUnit
  58. var count int64
  59. db := Db.Model(&c)
  60. if c.CaptureSn != "" {
  61. db = db.Where("capture_name like ? or capture_sn like ?", "%"+c.CaptureSn+"%", "%"+c.CaptureSn+"%")
  62. }
  63. db = db.Where("is_deleted = 0")
  64. db.Count(&count)
  65. err := db.Offset(offset).Limit(limit).Find(&Captures).Error
  66. return Captures, count, err
  67. }
  68. func (c *CaptureUnit) Delete() error {
  69. return Db.Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  70. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  71. }
  72. func (c CaptureUnit) GetAllDevices() ([]*CaptureUnit, error) {
  73. var Captures []*CaptureUnit
  74. err := Db.Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&Captures).Error
  75. return Captures, err
  76. }
  77. func (c CaptureUnit) GetDevicesByGateway() []CaptureUnit {
  78. var devices []CaptureUnit
  79. Db.Model(&c).Where(" gateway_id = ? and is_deleted = 0",
  80. c.GatewayId).Find(&devices)
  81. return devices
  82. }
  83. func (c CaptureUnit) GetDevicesByLampPole() []CaptureUnit {
  84. var devices []CaptureUnit
  85. Db.Model(&c).Where("lamp_pole_id = ? and is_deleted = 0",
  86. c.LampPoleId).Find(&devices)
  87. return devices
  88. }
  89. func (c CaptureUnit) DeviceCount1() (int64, int64) {
  90. var all, fault int64
  91. err := Db.Model(&c).Where("is_deleted = 0").Count(&all).Error
  92. if err != nil {
  93. all = 0
  94. }
  95. err = Db.Model(&c).Where("is_deleted = 0 and status = 0").Count(&fault).Error
  96. if err != nil {
  97. fault = 0
  98. }
  99. return all, fault
  100. }
  101. func (c CaptureUnit) ListDevices1() []Device {
  102. var devices []CaptureUnit
  103. Db.Model(&c).Where("is_deleted = 0").Find(&devices)
  104. var rsp = make([]Device, 0, len(devices))
  105. for _, v := range devices {
  106. var d = Device{
  107. Name: v.CaptureName,
  108. Code: v.CaptureSn,
  109. LampPoleName: v.GatewayName,
  110. }
  111. rsp = append(rsp, d)
  112. }
  113. return rsp
  114. }