fonchain-artistinfo/cmd/model/old/artworkbatch.go

13 lines
272 B
Go
Raw Normal View History

2023-02-28 15:27:00 +00:00
package old
2023-01-18 09:03:15 +00:00
2023-02-28 15:27:00 +00:00
import "github.com/fonchain/fonchain-artistinfo/cmd/model"
// User 用户模型
2023-01-18 09:03:15 +00:00
type ArtworkBatch struct {
2023-02-28 15:27:00 +00:00
model.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"`
}