min-report/pojo/pojo.go

16 lines
434 B
Go
Raw Normal View History

2023-08-18 09:59:43 +00:00
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"`
2023-09-25 05:58:49 +00:00
Ip string `json:"ip"`
2023-08-18 09:59:43 +00:00
}
type CommonResp struct {
}