You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
552 B
Go

package models
import "autogo/global"
type MonkeyResult struct {
global.MODEL
TaskId int `json:"task_id"`
CrashLogs string `json:"-"`
CrashLogList []string `json:"crash_log_list" gorm:"-"`
ActivityNameInfo string `json:"-"`
ActivityList []string `json:"activity_list" gorm:"-"`
DeviceName string `json:"device_name"`
Logs string `json:"-"`
LogList []string `json:"log_list" gorm:"-"`
}
func (m *MonkeyResult) TableName() string {
return "monkey_result"
}