Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pms
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
iuav
pms
Commits
505ce2ec
提交
505ce2ec
authored
4月 15, 2024
作者:
刘明祎-运维用途
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'develop'
上级
1ba5bc1f
7c39adfe
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
9 行增加
和
3 行删除
+9
-3
.gitlab-ci.yml
.gitlab-ci.yml
+1
-1
kustomization.yaml
kustomization/overlays/dev/kustomization.yaml
+1
-1
BaseController.java
src/main/java/com/mmc/pms/controller/BaseController.java
+5
-0
IndustryTypeController.java
...mmc/pms/controller/inspection/IndustryTypeController.java
+1
-1
not-check.yml
src/main/resources/not-check.yml
+1
-0
没有找到文件。
.gitlab-ci.yml
浏览文件 @
505ce2ec
...
...
@@ -16,7 +16,7 @@ variables:
ACR_EE_TAG
:
$CI_COMMIT_SHA
JAVA_VERSION
:
'
8'
GITLAB_URL
:
https://oauth2:
MjVJKxB7m4tCy7symBzn
@git.mmcuav.cn/iuav/pms.git
GITLAB_URL
:
https://oauth2:
ZhN6PrYzu9ELfyVq_KE5
@git.mmcuav.cn/iuav/pms.git
mvn_clean
:
stage
:
clean
...
...
kustomization/overlays/dev/kustomization.yaml
浏览文件 @
505ce2ec
...
...
@@ -18,4 +18,4 @@ patches:
images
:
-
name
:
REGISTRY/NAMESPACE/IMAGE:TAG
newName
:
mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly-dev/pms
newTag
:
a9bfdfcaf347c83aca6b0d3adba953e1913aaec0
newTag
:
b7fe2c5728b606167daee21c67c452fea7aca1f8
src/main/java/com/mmc/pms/controller/BaseController.java
浏览文件 @
505ce2ec
...
...
@@ -52,6 +52,11 @@ public abstract class BaseController {
if
(
StringUtils
.
isBlank
(
json
))
{
throw
new
BizException
(
ResultEnum
.
LOGIN_ACCOUNT_STATUS_ERROR
);
}
// 版本问题,需要修改json字符串,去除最外侧""和转义\
if
(
json
.
startsWith
(
"\""
)
&&
json
.
endsWith
(
"\""
))
{
json
=
json
.
substring
(
1
,
json
.
length
()
-
1
);
}
json
=
json
.
replace
(
"\\"
,
""
);
LoginSuccessDTO
loginSuccessDTO
=
JSONObject
.
parseObject
(
json
,
LoginSuccessDTO
.
class
);
return
loginSuccessDTO
;
}
...
...
src/main/java/com/mmc/pms/controller/inspection/IndustryTypeController.java
浏览文件 @
505ce2ec
...
...
@@ -65,7 +65,7 @@ public class IndustryTypeController {
@ApiOperation
(
value
=
"一级行业详情-全部"
)
@ApiResponses
({
@ApiResponse
(
code
=
200
,
message
=
"OK"
,
response
=
IndustryTypeDTO
.
class
)})
@GetMapping
(
"getIndustryTypeById"
)
public
IndustryTypeDTO
getIndustryTypeById
(
@RequestParam
Integer
id
,
@RequestParam
Integer
inspectionId
)
{
public
IndustryTypeDTO
getIndustryTypeById
(
@RequestParam
Integer
id
,
@RequestParam
(
required
=
false
)
Integer
inspectionId
)
{
return
industryTypeService
.
getIndustryTypeById
(
id
,
inspectionId
);
}
...
...
src/main/resources/not-check.yml
浏览文件 @
505ce2ec
...
...
@@ -42,3 +42,4 @@ data-filter:
-
/pms/brand/listBrandInfo
-
/pms/app/lease/leaseGoodsList
-
/pms/lease/goods/getLeaseTermInfo
-
/pms/app/goods/brandStoreList
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论