fonchain-artistinfo/cmd/model/artworkbatch.go

15 lines
240 B
Go
Raw Normal View History

2023-01-18 09:03:15 +00:00
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"`
}