diff --git a/src/model/user_delete_info.go b/src/model/user_delete_info.go index 88898ae..f0396b1 100644 --- a/src/model/user_delete_info.go +++ b/src/model/user_delete_info.go @@ -5,8 +5,9 @@ import ( ) type UserDeleteInfo struct { - Id int `json:"id" xorm:"not null pk autoincr INT(11)"` - Uid int `json:"uid" xorm:"default 0 INT(11)"` - Phone string `json:"phone" xorm:"VARCHAR(255)"` - CreateAt time.Time `json:"create_at" xorm:"DATETIME"` + Id int `json:"id" xorm:"not null pk autoincr INT(11)"` + Uid int `json:"uid" xorm:"default 0 INT(11)"` + Phone string `json:"phone" xorm:"VARCHAR(255)"` + CreateAt time.Time `json:"create_at" xorm:"DATETIME"` + ParentUid int `json:"parent_uid" xorm:"INT(11)"` }