support user role attachment

This commit is contained in:
yanghao05
2023-02-05 13:30:43 +08:00
parent 285e1f1c51
commit ee631b9714
17 changed files with 518 additions and 50 deletions

View File

@@ -0,0 +1,14 @@
package dictionary
type DictInfo struct {
ID uint64
Name string
Alias string
Description string
Items []*DictItem
}
type DictItem struct {
Label string
Value string
}