package dao import "lone-services/pkg/utils" // WecomAgent 企业微信应用 type WecomAgent struct { Id int64 `gorm:"column:id;primaryKey;autoIncrement" json:"id"` Name string `gorm:"column:name" json:"name"` AgentId int64 `gorm:"column:agent_id" json:"agent_id"` CreatedAt utils.CustomTime `gorm:"column:created_at" json:"created_at"` } // AgentListItem 应用列表项 type AgentListItem struct { Id int64 `json:"id"` Name string `json:"name"` AgentId int64 `json:"agent_id"` CreatedAt string `json:"created_at"` }