You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
550 B
Go

2 years ago
package model
import "gorm.io/gorm"
type ShowRel struct {
gorm.Model
2 years ago
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"` // 画展时间
2 years ago
}