fonchain-artistinfo/cmd/model/artworkbatch.go
2023-01-18 17:03:15 +08:00

15 lines
240 B
Go

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