bridgeDao.go 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package dao
  2. import (
  3. "github.com/jinzhu/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 int `gorm:"type:int" json:"tenantId"` //租户id
  31. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  32. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  33. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  34. UpdateUser int64 `gorm:"type:bigint" 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.Debug().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 = 0
  47. _ = Db.Debug().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.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
  54. c.SN, c.IsDeleted).Find(&devices).Error
  55. //如果查询不到,返回相应的错误
  56. if gorm.IsRecordNotFoundError(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.Debug().Model(&c).Save(&c).Error
  68. }
  69. func (c *Bridge) Update() error {
  70. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Update(&c).Error
  71. }
  72. func (c *Bridge) GetDevice() error {
  73. err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
  74. return err
  75. }
  76. func (c Bridge) GetDevices(offset, limit int) ([]Bridge, error) {
  77. var devices []Bridge
  78. err := Db.Debug().Model(&c).Where(" name like ? and is_deleted = 0", "%"+c.Name+"%").Offset(offset).Limit(limit).Find(&devices).Error
  79. return devices, err
  80. }
  81. func (c Bridge) GetAllDevices() ([]*Bridge, error) {
  82. var devices []*Bridge
  83. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  84. return devices, err
  85. }