git-subtree-dir: server git-subtree-mainline:c4e617ada7git-subtree-split:e64421295f
15 lines
565 B
Go
15 lines
565 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type PlanEffectImage struct {
|
|
Id int64 `orm:"id" json:"id"`
|
|
PlanId int64 `orm:"plan_id" json:"plan_id"`
|
|
Angle string `orm:"angle" json:"angle"`
|
|
Url string `orm:"url" json:"url"`
|
|
Status string `orm:"status" json:"status"`
|
|
PromptSnapshot string `orm:"prompt_snapshot" json:"prompt_snapshot"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
|
|
UpdatedAt *gtime.Time `orm:"updated_at" json:"updated_at"`
|
|
}
|