切换导航条
此项目
正在载入...
登录
allied-creation
/
sumifcc-discuss
·
提交
转到一个项目
GitLab
转到群组
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
差异文件
浏览文件
作者
yangfu
2024-01-08 15:00:48 +0800
提交
8afe6b2b0bd9d0efe0602dad9868c5c3e2807fba
2 个父辈
89d8094f
ffb18e90
Merge branch 'dev' into test
显示空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
3 行增加
和
0 行删除
cmd/discuss/api/dsl/core/user.api
cmd/discuss/api/internal/logic/user/system_user_info_logic.go
cmd/discuss/api/internal/types/types.go
cmd/discuss/api/dsl/core/user.api
查看文件 @
8afe6b2
...
...
@@ -417,6 +417,7 @@ type(
CompanyId int64 `json:"companyId"`
CompanyName string `json:"companyName"`
Code string `json:"code"`
CompanyVisible bool `json:"companyVisible"`
}
UserStatisticsRequest{
UserId int64 `json:"userId,optional"`
...
...
cmd/discuss/api/internal/logic/user/system_user_info_logic.go
查看文件 @
8afe6b2
...
...
@@ -98,6 +98,7 @@ func (l *SystemUserInfoLogic) SystemUserInfo(req *types.SystemUserInfoRequest) (
}
}
}
resp
.
CompanyVisible
=
company
.
Visible
==
1
err
=
l
.
initSystemData
(
companyId
)
if
err
!=
nil
{
return
nil
,
err
...
...
cmd/discuss/api/internal/types/types.go
查看文件 @
8afe6b2
...
...
@@ -725,6 +725,7 @@ type SystemUserInfoResponse struct {
CompanyId
int64
`json:"companyId"`
CompanyName
string
`json:"companyName"`
Code
string
`json:"code"`
CompanyVisible
bool
`json:"companyVisible"`
}
type
UserStatisticsRequest
struct
{
...
...
请
注册
或
登录
后发表评论