15 lines
240 B
Go
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"`
|
|
}
|