You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
785 B
23 lines
785 B
// ================================================================================= |
|
// Code generated by GoFrame CLI tool. DO NOT EDIT. |
|
// ================================================================================= |
|
|
|
package do |
|
|
|
import ( |
|
"github.com/gogf/gf/v2/frame/g" |
|
"github.com/gogf/gf/v2/os/gtime" |
|
) |
|
|
|
// WebOperateLog is the golang structure of table web_operate_log for DAO operations like Where/Data. |
|
type WebOperateLog struct { |
|
g.Meta `orm:"table:web_operate_log, do:true"` |
|
Id interface{} // |
|
FuncName interface{} // 调用功能 |
|
Ip interface{} // 使用者ip |
|
Ct *gtime.Time // 记录创建时间 |
|
Content interface{} // 内容 |
|
ReqJson interface{} // 请求内容 |
|
CbData interface{} // 回调内容 |
|
UserName interface{} // 操作账号 |
|
}
|
|
|