fonchain-artshow/cmd/model/show_apply.go

19 lines
702 B
Go
Raw Normal View History

2022-09-21 06:30:52 +00:00
package model
import (
"gorm.io/gorm"
)
type ShowApply struct {
gorm.Model
2022-11-11 05:13:19 +00:00
ApplyUID string `json:"apply_uid" gorm:"apply_uid"`
2022-09-21 06:30:52 +00:00
ApplySeq string `json:"apply_seq" gorm:"apply_seq"` // 画展包申请序列号
Applicant string `json:"applicant" gorm:"applicant"` // 申请人
2022-11-11 05:13:19 +00:00
ApplicantID string `json:"applicant_id" gorm:"applicant_id"` // 申请人
2022-09-21 06:30:52 +00:00
Num int32 `json:"num" gorm:"num"` // 申请画展包数量
ApplyTime string `json:"apply_time" gorm:"apply_time"` // 申请时间
2022-11-30 03:01:14 +00:00
Status int `json:"status" gorm:"status"` // 申请画展包状态
2022-09-21 06:30:52 +00:00
Remark string `json:"remark" gorm:"remark"` // 备注
}