广告平台(总站长使用)
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 4 mēnešiem
12345678910111213
  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. }