fonchain-artistinfo/cmd/model/artworkstate.go

11 lines
240 B
Go
Raw Normal View History

2023-01-18 09:03:15 +00:00
package model
2023-02-15 01:10:11 +00:00
// 考核 用户模型
2023-01-18 09:03:15 +00:00
type ArtworkState struct {
2023-02-15 01:10:11 +00:00
Model
ID int32 `gorm:"not null"`
ArtworkId int32 `gorm:"default:0"`
State int32 `gorm:"default:0"`
2023-01-18 09:03:15 +00:00
Pic string `gorm:"type:varchar(256) default ''"`
}