15 lines
402 B
Go
15 lines
402 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"`
|
||
|
}
|
||
|
|
||
|
type CommonResp struct {
|
||
|
}
|