fonchain-artistinfo/cmd/model/artworkbatch.go

11 lines
207 B
Go

package model
//User 用户模型
type ArtworkBatch struct {
Model
ID int32 `gorm:"not null"`
BatchId int32 `gorm:"not null"`
ArtistId int32 `gorm:"not null"`
State int32 `gorm:"not null"`
}