广告平台(总站长使用)
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

permission_implement.go 216 B

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