切换导航条
此项目
正在载入...
登录
allied-creation
/
allied-creation-gateway
·
提交
转到一个项目
GitLab
转到群组
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
yangfu
2021-09-09 14:02:24 +0800
提交
baab0744e20e3f123eef5c0e7fd0f27668fedc51
1 个父辈
8af5991a
角色组织修改
隐藏空白字符变更
内嵌
并排对比
正在显示
4 个修改的文件
包含
4 行增加
和
1 行删除
deploy/k8s/test/allied-creation-gateway.yaml
pkg/application/web/users/dto/dto.go
pkg/application/web/users/service/users.go
pkg/infrastructure/service_gateway/allied_creation_user/param_user.go
deploy/k8s/test/allied-creation-gateway.yaml
查看文件 @
baab074
...
...
@@ -47,7 +47,7 @@ spec:
-
cn-hangzhou.i-bp1hyp5oips9cdwxxgxy
containers
:
-
name
:
allied-creation-gateway
image
:
192.168.0.243:5000/mmm/allied-creation-gateway:
dev
image
:
192.168.0.243:5000/mmm/allied-creation-gateway:
test
imagePullPolicy
:
Always
ports
:
-
containerPort
:
8082
...
...
pkg/application/web/users/dto/dto.go
查看文件 @
baab074
...
...
@@ -38,6 +38,7 @@ type UserOrg struct {
type
UserRole
struct
{
RoleID
string
`json:"roleId"`
OrgId
int64
`json:"orgId,string"`
RoleName
string
`json:"roleName"`
OrgName
string
`json:"orgName"`
RoleType
int
`json:"roleType"`
...
...
pkg/application/web/users/service/users.go
查看文件 @
baab074
...
...
@@ -72,6 +72,7 @@ func (usersService *UsersService) CompanyUserGet(companyUserGetQuery *query.Comp
for
_
,
v
:=
range
resultUser
.
UserRole
{
userRole
=
append
(
userRole
,
dto
.
UserRole
{
RoleID
:
strconv
.
Itoa
(
v
.
RoleID
),
OrgId
:
v
.
OrgId
,
RoleName
:
v
.
RoleName
,
OrgName
:
v
.
Ext
.
OrgName
,
RoleType
:
v
.
RoleType
,
...
...
pkg/infrastructure/service_gateway/allied_creation_user/param_user.go
查看文件 @
baab074
...
...
@@ -48,6 +48,7 @@ type UserDetail struct {
RoleID
int
`json:"roleId"`
RoleName
string
`json:"roleName"`
RoleType
int
`json:"roleType"`
OrgId
int64
`json:"orgId"`
Ext
struct
{
OrgName
string
`json:"orgName"`
}
`json:"ext,omitempty"`
...
...
请
注册
或
登录
后发表评论