|
|
@ -16,9 +16,10 @@ type OrderEntryPerson struct { |
|
|
|
Pid int `json:"pid" xorm:"not null default 0 comment('主账号') VARCHAR(255)"` |
|
|
|
AreaId int `json:"area_id" xorm:"not null default 0 comment('地区id') BIGINT(20)"` |
|
|
|
AreaName string `json:"area_name" xorm:"-"` |
|
|
|
ActivityId int `json:"activity_id" xorm:"not null default 0 comment('主活动id') BIGINT(20)"` |
|
|
|
ActivityId int `json:"activity_id" xorm:"not null default 0 comment('主活动id') BIGINT(20)"` |
|
|
|
ActivityName string `json:"activity_name" xorm:"-"` |
|
|
|
Token string `json:"token" xorm:"-"` |
|
|
|
IsSpecial int `json:"is_special" xorm:"-"` |
|
|
|
IsDelete bool `json:"-" xorm:"not null default(0) comment('软删除') TINYINT(1)"` |
|
|
|
CreatedAt time.Time `json:"-" xorm:"not null created comment('创建时间') DATETIME"` |
|
|
|
UpdatedAt time.Time `json:"-" xorm:"not null updated comment('更新时间') DATETIME"` |
|
|
|