account_destroy_record.go 583 字节
package models

import "time"

type AccountDestroyRecord struct {
	tableName string `comment:"账号注销记录" pg:"users.account_destroy_records,alias:account_destroy_record"`
	// 用户基础数据id
	UserBaseId int64 `comment:"用户基础数据id"`
	// 账号注销记录ID
	AccountDestroyRecordId int64 `comment:"账号注销记录ID" pg:"pk:account_destroy_record_id"`
	// 注销时间
	DestroyTime time.Time `comment:"注销时间"`
	// 账号修改后
	AccountAfter string `comment:"账号修改后"`
	// 账号修改前
	AccountBefore string `comment:"账号修改前"`
}