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
833 B
23 lines
833 B
// ================================================================================= |
|
// Code generated by GoFrame CLI tool. DO NOT EDIT. |
|
// ================================================================================= |
|
|
|
package do |
|
|
|
import ( |
|
"github.com/gogf/gf/v2/frame/g" |
|
) |
|
|
|
// GameBug is the golang structure of table game_bug for DAO operations like Where/Data. |
|
type GameBug struct { |
|
g.Meta `orm:"table:game_bug, do:true"` |
|
Id interface{} // 索引ID |
|
Uid interface{} // 桃谷id |
|
Server interface{} // 区服 |
|
Qq interface{} // qq号 |
|
Tel interface{} // 手机号 |
|
Bug interface{} // bug详情 |
|
OccurrenceTime interface{} // 发生时间 |
|
CreateTime interface{} // 创建时间 |
|
State interface{} // 0表示没处理,1表示已处理 |
|
}
|
|
|