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" }