fonchain-artistinfo/cmd/model/old/artworkstate.go

13 lines
304 B
Go
Raw Normal View History

2023-02-28 15:27:00 +00:00
package old
import "github.com/fonchain/fonchain-artistinfo/cmd/model"
2023-01-18 09:03:15 +00:00
2023-02-15 01:10:11 +00:00
// 考核 用户模型
2023-01-18 09:03:15 +00:00
type ArtworkState struct {
2023-02-28 15:27:00 +00:00
model.Model
2023-02-15 01:10:11 +00:00
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 ''"`
}