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.
|
package models
|
|
|
|
import "autogo/global"
|
|
|
|
type MonkeyActivity struct {
|
|
global.MODEL
|
|
TaskId int `json:"task_id"`
|
|
DeviceName string `json:"device_name"`
|
|
ActivityName string `json:"activity_name"`
|
|
}
|
|
|
|
func (m *MonkeyActivity) TableName() string {
|
|
return "monkey_activity"
|
|
}
|