23 lines
570 B
Go
23 lines
570 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Store struct {
|
|
Store_id uint `gorm:"primaryKey"`
|
|
Owner_id uint
|
|
Owner Owner `gorm:"references:Owner_id"`
|
|
Name string
|
|
Address string
|
|
PhoneNumber string
|
|
WebAddress string
|
|
ApiAddress string
|
|
StorageAddress string
|
|
AdminPanelAddress string
|
|
License_id uint
|
|
License License `gorm:"references:License_id"`
|
|
Created_at time.Time
|
|
Modified_at time.Time
|
|
Modified_by string
|
|
Is_removed bool `gorm:"default:false"`
|
|
}
|