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