bridgeDao.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. package dao
  2. import (
  3. "gorm.io/gorm"
  4. "time"
  5. )
  6. type Bridge struct {
  7. ID int `gorm:"primary_key" json:"id"` //编号
  8. Name string `gorm:"type:varchar(64)" json:"name"` //名称
  9. SN string `gorm:"type:varchar(60)" json:"sn"` //唯一编码
  10. Lng float64 `gorm:"type:double(17, 14)" json:"lng"` //经度
  11. Lat float64 `gorm:"type:double(17, 14)" json:"lat"` //纬度
  12. ProvinceName string `gorm:"type:varchar(60)" json:"provinceName"` //省份
  13. CityName string `gorm:"type:varchar(60)" json:"cityName"` //市
  14. DistrictName string `gorm:"type:varchar(60)" json:"districtName"` //区
  15. InstallPosition string `gorm:"type:varchar(100)" json:"installLocation"` //位置
  16. PurposeType int `gorm:"type:int" json:"purposeType"` //用途类型
  17. StraddlesType int `gorm:"type:int" json:"straddlesType"` //跨越类型
  18. StuffType int `gorm:"type:int" json:"stuffType"` //材料类型
  19. StructureType int `gorm:"type:int" json:"structureType"` //结构类型
  20. TechniqueGrade int `gorm:"type:int" json:"techniqueGrade"` //技术等级
  21. CompletionTime string `gorm:"type:date" json:"completionTime"` //建成时间
  22. Length int `gorm:"type:int" json:"length"` //长度
  23. Width int `gorm:"type:int" json:"width"` //宽度
  24. Height int `gorm:"type:int" json:"height"` //高度
  25. TrafficNum int `gorm:"type:int" json:"trafficNum"` //车道数
  26. IsOpenTraffic int `gorm:"type:int" json:"isOpenTraffic"` //是否已通车
  27. DesignSpeed int `gorm:"type:int" json:"designSpeed"` //设计时速
  28. BriefIntroduction string `gorm:"type:varchar(255)" json:"briefIntroduction"` //简介
  29. Photo string `gorm:"type:varchar(255)" json:"photo"` //照片
  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. Status int `gorm:"type:int" json:"status"` //状态 0=正常,1=异常
  37. }
  38. func (Bridge) TableName() string {
  39. return "device_bridge"
  40. }
  41. func (c Bridge) Delete() error {
  42. return Db.Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  43. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  44. }
  45. func (c Bridge) IsExistedBySN() bool {
  46. var count int64
  47. _ = Db.Model(&c).Where(" tsn = ? and is_deleted = ?",
  48. c.SN, c.IsDeleted).Count(&count).Error
  49. return count > 0
  50. }
  51. func (c Bridge) IsExistedByNameAndCode() bool {
  52. var devices []Bridge
  53. err := Db.Model(&c).Where(" sn = ? and is_deleted = ?",
  54. c.SN, c.IsDeleted).Find(&devices).Error
  55. //如果查询不到,返回相应的错误
  56. if gorm.ErrRecordNotFound == err {
  57. return false
  58. }
  59. for _, d := range devices {
  60. if d.ID != c.ID {
  61. return true
  62. }
  63. }
  64. return false
  65. }
  66. func (c *Bridge) Create() error {
  67. return Db.Model(&c).Save(&c).Error
  68. }
  69. func (c *Bridge) Update() error {
  70. return Db.Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  71. }
  72. func (c *Bridge) GetDevice() error {
  73. err := Db.Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
  74. return err
  75. }
  76. func (c Bridge) GetDevices(offset, limit int) ([]Bridge, int64, error) {
  77. var devices []Bridge
  78. var count int64
  79. db := Db.Model(&c).Where(" name like ? and is_deleted = 0", "%"+c.Name+"%")
  80. db.Count(&count)
  81. err := db.Offset(offset).Limit(limit).Find(&devices).Error
  82. return devices, count, err
  83. }
  84. func (c Bridge) GetAllDevices() ([]*Bridge, error) {
  85. var devices []*Bridge
  86. err := Db.Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  87. return devices, err
  88. }
  89. func (c Bridge) 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 = -1
  94. }
  95. err = Db.Model(&c).Where("is_deleted = 0 and status = 0").Count(&fault).Error
  96. if err != nil {
  97. fault = -1
  98. }
  99. return all, fault
  100. }
  101. func (c Bridge) ListDevices1() []Device {
  102. var devices []Bridge
  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. Lng: v.Lng,
  108. Lat: v.Lat,
  109. Status: v.Status,
  110. Name: v.Name,
  111. Code: v.SN,
  112. LampPoleName: v.DistrictName,
  113. Model: "模型",
  114. }
  115. rsp = append(rsp, d)
  116. }
  117. return rsp
  118. }