git-subtree-dir: server git-subtree-mainline:c4e617ada7git-subtree-split:e64421295f
18 lines
784 B
Go
18 lines
784 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type OutfitGenerationTask struct {
|
|
Id int64 `orm:"id" json:"id"`
|
|
UserId int64 `orm:"user_id" json:"user_id"`
|
|
StartDate string `orm:"start_date" json:"start_date"`
|
|
EndDate string `orm:"end_date" json:"end_date"`
|
|
Location string `orm:"location" json:"location"`
|
|
WeatherSnapshot string `orm:"weather_snapshot" json:"weather_snapshot"`
|
|
Status string `orm:"status" json:"status"`
|
|
Error string `orm:"error" json:"error"`
|
|
ModelName string `orm:"model_name" json:"model_name"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
|
|
UpdatedAt *gtime.Time `orm:"updated_at" json:"updated_at"`
|
|
}
|