16 lines
434 B
Go
16 lines
434 B
Go
package pojo
|
|
|
|
type ReportData struct {
|
|
Id int64 `json:"id" xorm:"pk autoincr"`
|
|
Admin string `json:"admin" xorm:"varchar(20)"` // 管理员
|
|
CreatedTime int64 `json:"created_time" xorm:"created"`
|
|
OperaName string `json:"opera_name"`
|
|
Platform string `json:"platform"`
|
|
CourseName string `json:"course_name"`
|
|
CourseId string `json:"course_id"`
|
|
Ip string `json:"ip"`
|
|
}
|
|
|
|
type CommonResp struct {
|
|
}
|