Explorar el Código

后台操作日志

master
huangjiajun hace 23 horas
padre
commit
6edcf1c593
Se han modificado 1 ficheros con 15 adiciones y 0 borrados
  1. +15
    -0
      src/model/admin_log.go

+ 15
- 0
src/model/admin_log.go Ver fichero

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

import (
"time"
)

type AdminLog struct {
Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
Type string `json:"type" xorm:"VARCHAR(255)"`
AdminId int `json:"admin_id" xorm:"default 0 INT(11)"`
Memo string `json:"memo" xorm:"VARCHAR(2000)"`
Time time.Time `json:"time" xorm:"DATETIME"`
Ip string `json:"ip" xorm:"VARCHAR(255)"`
Data string `json:"data" xorm:"TEXT"`
}

Cargando…
Cancelar
Guardar