广告平台(总站长使用)
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

14 řádky
348 B

  1. package dao
  2. import (
  3. "applet/app/db/model"
  4. "xorm.io/xorm"
  5. )
  6. type AgentDao interface {
  7. GetAgentByUsername(username string) (medium *model.Agent, err error)
  8. AgentInsert(m *model.Agent) (int64, error)
  9. AgentDeleteBySession(session *xorm.Session, id interface{}) (int64, error)
  10. UpdateAgent(m *model.Agent, columns ...string) (int64, error)
  11. }