fonchain-artistinfo/cmd/model/artworkbatch.go
2022-12-09 16:24:12 +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"`
}