Ver código fonte

用户注销记录表

master
huangjiajun 2 dias atrás
pai
commit
2504c8f316
1 arquivos alterados com 12 adições e 0 exclusões
  1. +12
    -0
      src/model/user_delete_info.go

+ 12
- 0
src/model/user_delete_info.go Ver arquivo

@@ -0,0 +1,12 @@
package model

import (
"time"
)

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"`
}

Carregando…
Cancelar
Salvar