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 MonkeyPid struct {
|
|
global.MODEL
|
|
TaskId int `json:"task_id" column:"task_id"`
|
|
PId int `json:"pid" gorm:"column:pid"`
|
|
}
|
|
|
|
func (m *MonkeyPid) TableName() string {
|
|
return "monkey_pid"
|
|
}
|