Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
f2caa909
Commit
f2caa909
authored
Sep 05, 2025
by
tianbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor(amos-boot-module-tcm-biz): 修正 API 操作类型注解
- 将 /handleCompanyHisOrgCode 的 httpMethod 从 "PUT" 修改为 "POST" - 将 /handleCompanyAppId 的 httpMethod 从 "PUT" 修改为 "POST"
parent
21ea1592
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
HistoryDataDealController.java
.../module/tcm/biz/controller/HistoryDataDealController.java
+2
-2
No files found.
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-biz/src/main/java/com/yeejoin/amos/boot/module/tcm/biz/controller/HistoryDataDealController.java
View file @
f2caa909
...
...
@@ -50,14 +50,14 @@ public class HistoryDataDealController {
@Deprecated
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@PostMapping
(
value
=
"/handleCompanyHisOrgCode"
)
@ApiOperation
(
httpMethod
=
"P
U
T"
,
value
=
"监管单位层级调整后,业务表(企业、设备、统计等)冗余的所有旧orgCode替换为新orgCode,不更新平台表"
,
notes
=
"监管单位层级调整后,业务表(企业、设备、统计等)冗余的所有旧orgCode替换为新orgCode,不更新平台表"
)
@ApiOperation
(
httpMethod
=
"P
OS
T"
,
value
=
"监管单位层级调整后,业务表(企业、设备、统计等)冗余的所有旧orgCode替换为新orgCode,不更新平台表"
,
notes
=
"监管单位层级调整后,业务表(企业、设备、统计等)冗余的所有旧orgCode替换为新orgCode,不更新平台表"
)
public
ResponseModel
<
String
>
handleCompanyHisOrgCode
(
@RequestBody
List
<
Map
<
String
,
Object
>>
orgCodeMap
)
{
return
ResponseHelper
.
buildResponse
(
historyDataDealService
.
handleCompanyHisOrgCode
(
orgCodeMap
));
}
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@PostMapping
(
value
=
"/handleCompanyAppId"
)
@ApiOperation
(
httpMethod
=
"P
U
T"
,
value
=
"修复未生成appId的旧企业数据"
,
notes
=
"修复未生成appId的旧企业数据"
)
@ApiOperation
(
httpMethod
=
"P
OS
T"
,
value
=
"修复未生成appId的旧企业数据"
,
notes
=
"修复未生成appId的旧企业数据"
)
public
ResponseModel
<
String
>
handleCompanyAppId
(
@RequestBody
(
required
=
false
)
List
<
String
>
useUnitCodes
)
{
return
ResponseHelper
.
buildResponse
(
historyDataDealService
.
handleCompanyAppId
(
useUnitCodes
));
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment