15 lines
275 B
Go
15 lines
275 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
//考核 用户模型
|
||
|
type ArtworkState struct {
|
||
|
gorm.Model
|
||
|
ID int32 `gorm:"not null"`
|
||
|
ArtworkId int32 `gorm:"default:0"`
|
||
|
State int32 `gorm:"default:0"`
|
||
|
Pic string `gorm:"type:varchar(256) default ''"`
|
||
|
}
|