您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

12 行
315 B

  1. package model
  2. type Floor struct {
  3. ID string `gorm:"unique;primaryKey"`
  4. Name string `json:"name"`
  5. FloorNumber int `json:"floornumber"`
  6. Image string `json:"image"`
  7. Description string `json:"description"`
  8. Scale float32 `json:"scale"`
  9. Building string `json:"building"`
  10. }