广告平台(总站长使用)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
220 B

  1. package implement
  2. import (
  3. "applet/app/db/dao"
  4. "xorm.io/xorm"
  5. )
  6. func NewAgentDomainDb(engine *xorm.Engine) dao.AgentDomainDao {
  7. return &AgentDomainDb{Db: engine}
  8. }
  9. type AgentDomainDb struct {
  10. Db *xorm.Engine
  11. }