package old

import "github.com/fonchain/fonchain-artistinfo/cmd/model"

// User 用户模型
type ArtworkBatch struct {
	model.Model
	ID       int32 `gorm:"not null"`
	BatchId  int32 `gorm:"not null"`
	ArtistId int32 `gorm:"not null"`
	State    int32 `gorm:"not null"`
}