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.

19 lines
702 B
Go

package model
import (
"gorm.io/gorm"
)
type ShowApply struct {
gorm.Model
ApplyUID string `json:"apply_uid" gorm:"apply_uid"`
ApplySeq string `json:"apply_seq" gorm:"apply_seq"` // 画展包申请序列号
Applicant string `json:"applicant" gorm:"applicant"` // 申请人
ApplicantID string `json:"applicant_id" gorm:"applicant_id"` // 申请人
Num int32 `json:"num" gorm:"num"` // 申请画展包数量
ApplyTime string `json:"apply_time" gorm:"apply_time"` // 申请时间
Status int `json:"status" gorm:"status"` // 申请画展包状态
Remark string `json:"remark" gorm:"remark"` // 备注
}