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.

17 lines
642 B
Go

2 years ago
package model
import "gorm.io/gorm"
type ShowRel struct {
gorm.Model
//ShowSeq string `json:"show_seq" gorm:"show_seq"` // 画展包序列
ShowID uint `json:"show_id" gorm:"show_id"` // 画展包ID
//ApplySeq string `json:"apply_seq" gorm:"apply_seq"` // 申请序列
ApplyID uint `json:"apply_id" gorm:"apply_id"` // 申请ID
Index int32 `json:"index" gorm:"index"` // 申请下标
Address string `json:"address" gorm:"address"` // 参展地址
//Status int32 `json:"status" gorm:"status"` // 参展状态 1、待展 2、驳回 3、可展
//Remark string `json:"remark" gorm:"remark"` // 备注
}