审查视图

pkg/application/role/adapter/role_adapter.go 188 字节
1 2 3 4 5 6 7
package adapter

import (
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/domain"
)

type RoleUserAdapter struct {
郑周 authored
8
	*domain.Role
郑周 authored
9
	Users []*domain.RoleContainUser `json:"users"`
10
}