fonchain-artistinfo/cmd/model/artworkbatch.go

11 lines
207 B
Go
Raw Normal View History

2023-01-18 09:03:15 +00:00
package model
//User 用户模型
type ArtworkBatch struct {
2023-02-15 01:10:11 +00:00
Model
2023-01-18 09:03:15 +00:00
ID int32 `gorm:"not null"`
BatchId int32 `gorm:"not null"`
ArtistId int32 `gorm:"not null"`
State int32 `gorm:"not null"`
}