15 lines
681 B
Go
15 lines
681 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type Prop struct {
|
|
Id int64 `orm:"id" json:"id" dc:"道具ID"`
|
|
DramaId int64 `orm:"drama_id" json:"dramaId" dc:"短剧ID"`
|
|
Name string `orm:"name" json:"name" dc:"道具名称"`
|
|
Description string `orm:"description" json:"description" dc:"道具描述"`
|
|
ImagePath string `orm:"image_path" json:"imagePath" dc:"道具图片路径"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"createdAt" dc:"创建时间"`
|
|
UpdatedAt *gtime.Time `orm:"updated_at" json:"updatedAt" dc:"更新时间"`
|
|
DeletedAt *gtime.Time `orm:"deleted_at" json:"deletedAt" dc:"删除时间"`
|
|
}
|