fonchain-artistinfo/cmd/model/artworkstate.go

15 lines
275 B
Go
Raw Normal View History

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