site.go 349 B

12345678910
  1. package model
  2. type Site struct {
  3. Model
  4. Path string `json:"path" gorm:"uniqueIndex"`
  5. Advanced bool `json:"advanced"`
  6. SiteCategoryID uint64 `json:"site_category_id"`
  7. SiteCategory *SiteCategory `json:"site_category,omitempty"`
  8. SyncNodeIDs []uint64 `json:"sync_node_ids" gorm:"serializer:json"`
  9. }