venderDao.go 1.3 KB

1234567891011121314151617181920212223242526272829
  1. package dao
  2. import (
  3. "time"
  4. )
  5. // DeviceVendor 厂家
  6. type DeviceVendor struct {
  7. ID int `gorm:"primary_key" json:"id"` //编号
  8. VendorType int `gorm:"int" json:"vendorType"` //类型:1-厂家名称,2-品牌,3-型号
  9. VendorValue string `gorm:"type:varchar(200)" json:"vendorValue"` //值
  10. ParentId int `gorm:"type:int" json:"parentId"` //父id,厂家为-1
  11. DeviceType int `gorm:"type:int" json:"deviceType"` //设备类型
  12. TenantId int `gorm:"type:int" json:"tenantId"` //租户id
  13. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  14. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  15. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  16. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改用户
  17. IsDeleted int `gorm:"type:int" json:"isDeleted"` //是否删除 0=未删除,1=删除
  18. }
  19. func (DeviceVendor) TableName() string {
  20. return "dev_vendor"
  21. }
  22. func (c *DeviceVendor) GetByType() error {
  23. err := Db.Debug().Model(&c).Where(" vendor_type = ? and device_type = ?", c.VendorType, c.DeviceType).Find(&c).Error
  24. return err
  25. }