广告平台(总站长使用)
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.

agent_permission_implement.go 236 B

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