13 lines
634 B
Go
13 lines
634 B
Go
package dbstruct
|
|
|
|
type AccountCancellation struct {
|
|
Id *int64 `json:"id" bson:"_id"` // 账户注销表id
|
|
Mid *int64 `json:"mid" bson:"mid"` // 用户表id
|
|
Status *int64 `json:"status" bson:"status"` // 注销状态
|
|
DueTime *int64 `json:"due_time" bson:"due_time"` // 注销时间
|
|
AbortTime *int64 `json:"abort_time" bson:"abort_time"` // 中止时间
|
|
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
|
|
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
|
|
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
|
|
}
|