agent_mgr.go 408 Bytes
Newer Older
kzkzzzz's avatar
kzkzzzz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package model

import (
	"time"
)

type AgentMgr struct {
	AgentId     int64     `json:"agent_id"`     // 代理id
	CreatedTime time.Time `json:"created_time"` // 新增时间
	Id          int64     `json:"id"`           // id
	UpdatedTime time.Time `json:"updated_time"` // 更新时间
	UserId      int64     `json:"user_id"`      // UserId
}

func (a *AgentMgr) TableName() string {
	return "agent_mgr"
}