您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
12345678910111213 |
- package db
-
- import (
- "xorm.io/xorm"
- )
-
- type PermissionDb struct {
- Db *xorm.Engine `json:"db"`
- }
-
- func (permissionDb *PermissionDb) Set() { // set方法
- permissionDb.Db = Db
- }
|