您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- package implement
-
- import (
- "applet/app/db/dao"
- "xorm.io/xorm"
- )
-
- func NewAgentDomainDb(engine *xorm.Engine) dao.AgentDomainDao {
- return &AgentDomainDb{Db: engine}
- }
-
- type AgentDomainDb struct {
- Db *xorm.Engine
- }
|