package dto // 数控中心报表 type ModuleAccessToDigitalControlCentreDto struct { // 用户的角色权限列表 UserRoles []string `json:"userRoles"` // 列表 Allows []*ModuleAccessAllowItem `json:"modules"` } type ModuleAccessAllowItem struct { Allow bool `json:"allow"` SettingCode string `json:"settingCode"` ConfigRoles []string `json:"configRoles"` }