Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 0b9b97da
authored
Oct 24, 2023
by
刘鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI: 移除更改为MQ实现的REST定义, 变动为MQ消费事件, 祥见 BeanKafkaConsumer
1 parent
dad60019
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
38 deletions
project-order/src/main/java/com/dituhui/pea/order/controller/PeaApiController.java
project-order/src/main/java/com/dituhui/pea/order/controller/PeaApiController.java
View file @
0b9b97d
...
...
@@ -50,44 +50,6 @@ public class PeaApiController {
};
/**
* 2.1MQ 组织架构同步事件通知
*
* @param requestParam 请求参数
* @return 成功或者失败
* @apiNote BEAN系统当组织架构信息变化的时候,通知PEA系统;然后PEA系统,将会根据变化的要素信息,再去向BEAN系统发起查询,去获取详细的信息;
*/
public
Result
<?>
organizationTree
(
@NotNull
(
message
=
"请求参数不能为空"
)
@Validated
({
ValidGroup
.
PeaTree
.
class
})
@RequestBody
OrganizationTreeDTO
.
Request
requestParam
)
{
return
Result
.
success
(
null
);
}
/**
* 2.2MQ 组织人员同步事件通知
*
* @param requestParam 请求参数
* @return 成功或者失败
* @apiNote 当组织人员有变化的时候,BEAN调用本接口,告知PEA系统,该组织人员有变化,PEA系统再去BEAN系统发起查询,获取该组织所有的人员信息保存到本地;
*/
public
Result
<?>
organizationStaff
(
@RequestBody
OrganizationTreeDTO
.
Request
requestParam
)
{
return
Result
.
success
(
null
);
}
/**
* 2.3MQ 技术员信息同步事件通知
*
* @param requestParam 请求参数
* @return 成功或者失败
* @apiNote 将网点/小组内的工程师信息,推送给PEA系统;包括2种模式:全量/增量;
*/
public
Result
<?>
organizationEngineer
(
@RequestBody
EngineerParamDTO
.
Request
requestParam
)
{
return
Result
.
success
(
null
);
}
/**
* 3.1GET 查询技术员日历
*
* @param engineerCode 工程师编码
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment