15 lines
550 B
Go
15 lines
550 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type ShowRel struct {
|
|
gorm.Model
|
|
|
|
ShowRelUID string `json:"show_rel_uid" gorm:"show_rel_uid"` // 画展包申请关联画展UID
|
|
ShowUID string `json:"show_uid" gorm:"show_uid"` // 画展包ID
|
|
ApplyUID string `json:"apply_uid" gorm:"show_uid"` // 申请ID
|
|
Index int32 `json:"index" gorm:"index"` // 申请下标
|
|
Address string `json:"address" gorm:"address"` // 参展地址
|
|
ShowTime string `json:"show_time" gorm:"show_time"` // 画展时间
|
|
}
|