正在显示
100 个修改的文件
包含
918 行增加
和
1 行删除
1 | # 天联共创 | 1 | # 天联共创 |
2 | 2 | ||
3 | +## 项目架构 | ||
4 | +- 基于REST Full的微服务架构 | ||
5 | + | ||
3 | ## 代码仓库及相关文档 | 6 | ## 代码仓库及相关文档 |
4 | - [仓库地址](http://gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation.git) | 7 | - [仓库地址](http://gitlab.fjmaimaimai.com/allied-creation/allied-creation-cooperation.git) |
5 | - [项目原型svn](svn://220.250.41.79/repo/标准产品文件) | 8 | - [项目原型svn](svn://220.250.41.79/repo/标准产品文件) |
@@ -10,7 +13,7 @@ | @@ -10,7 +13,7 @@ | ||
10 | - GIT流程:里程碑->问题->功能分支->代码审查->合并分支 | 13 | - GIT流程:里程碑->问题->功能分支->代码审查->合并分支 |
11 | - 开发分支命名规范:dev-姓名全拼 | 14 | - 开发分支命名规范:dev-姓名全拼 |
12 | - 接口规范:[API交互规范](https://doc-press.fjmaimaimai.com/standard/api.html) | 15 | - 接口规范:[API交互规范](https://doc-press.fjmaimaimai.com/standard/api.html) |
13 | -- 接口版本号:v2 | 16 | +- 接口版本号:v1 |
14 | - 数据交互规范:[数据交互格式标准](https://doc-press.fjmaimaimai.com/team/frontend/overview/http.html) | 17 | - 数据交互规范:[数据交互格式标准](https://doc-press.fjmaimaimai.com/team/frontend/overview/http.html) |
15 | 18 | ||
16 | ## 项目使用框架 | 19 | ## 项目使用框架 |
不能预览此文件类型
不能预览此文件类型
1 | +version: v1 | ||
2 | +kind: HttpApi | ||
3 | +metadata: | ||
4 | + service: contractUndertakerFeedback | ||
5 | + path: /contract-undertaker-feedbacks | ||
6 | + endpoints: | ||
7 | + - method: createContractUndertakerFeedback | ||
8 | + route: | ||
9 | + post: / | ||
10 | + - method: updateContractUndertakerFeedback | ||
11 | + route: | ||
12 | + put: /{contractUndertakerFeedbackId} | ||
13 | + - method: getContractUndertakerFeedback | ||
14 | + route: | ||
15 | + get: /{contractUndertakerFeedbackId} | ||
16 | + - method: removeContractUndertakerFeedback | ||
17 | + route: | ||
18 | + delete: /{contractUndertakerFeedbackId} | ||
19 | + - method: searchContractUndertakerFeedback | ||
20 | + route: | ||
21 | + post: /search | ||
22 | + - method: listContractUndertakerFeedback | ||
23 | + route: | ||
24 | + get: / | ||
25 | + params: | ||
26 | + - name: offset | ||
27 | + - name: limit |
1 | +version: v1 | ||
2 | +kind: HttpApi | ||
3 | +metadata: | ||
4 | + service: cooperationApplication | ||
5 | + path: /cooperation-applications | ||
6 | + endpoints: | ||
7 | + - method: applyForCooperation | ||
8 | + route: | ||
9 | + post: /apply-for-cooperation | ||
10 | + - method: agreeCooperationApplication | ||
11 | + route: | ||
12 | + post: /agree-cooperation-application | ||
13 | + - method: rejectCooperationApplication | ||
14 | + route: | ||
15 | + post: /reject-cooperation-application | ||
16 | + - method: createCooperationApplication | ||
17 | + route: | ||
18 | + post: / | ||
19 | + - method: updateCooperationApplication | ||
20 | + route: | ||
21 | + put: /{cooperationApplicationId} | ||
22 | + - method: getCooperationApplication | ||
23 | + route: | ||
24 | + get: /{cooperationApplicationId} | ||
25 | + - method: removeCooperationApplication | ||
26 | + route: | ||
27 | + delete: /{cooperationApplicationId} | ||
28 | + - method: searchCooperationApplication | ||
29 | + route: | ||
30 | + post: /search | ||
31 | + - method: listCooperationApplication | ||
32 | + route: | ||
33 | + get: / | ||
34 | + params: | ||
35 | + - name: offset | ||
36 | + - name: limit |
1 | +version: v1 | ||
2 | +kind: HttpApi | ||
3 | +metadata: | ||
4 | + service: cooperationContractChangeLog | ||
5 | + path: /cooperation-contract-change-logs | ||
6 | + endpoints: | ||
7 | + - method: createCooperationContractChangeLog | ||
8 | + route: | ||
9 | + post: / | ||
10 | + - method: updateCooperationContractChangeLog | ||
11 | + route: | ||
12 | + put: /{cooperationContractChangeLogId} | ||
13 | + - method: getCooperationContractChangeLog | ||
14 | + route: | ||
15 | + get: /{cooperationContractChangeLogId} | ||
16 | + - method: removeCooperationContractChangeLog | ||
17 | + route: | ||
18 | + delete: /{cooperationContractChangeLogId} | ||
19 | + - method: listCooperationContractChangeLog | ||
20 | + route: | ||
21 | + get: / | ||
22 | + params: | ||
23 | + - name: offset | ||
24 | + - name: limit | ||
25 | + - method: searchCooperationContractChangeLog | ||
26 | + route: | ||
27 | + post: /search |
1 | +version: v1 | ||
2 | +kind: HttpApi | ||
3 | +metadata: | ||
4 | + service: cooperationContract | ||
5 | + path: /cooperation-contracts | ||
6 | + endpoints: | ||
7 | + - method: createCooperationContract | ||
8 | + route: | ||
9 | + post: / | ||
10 | + - method: updateCooperationContract | ||
11 | + route: | ||
12 | + put: /{cooperationContractId} | ||
13 | + - method: getCooperationContract | ||
14 | + route: | ||
15 | + get: /{cooperationContractId} | ||
16 | + - method: removeCooperationContract | ||
17 | + route: | ||
18 | + delete: /{cooperationContractId} | ||
19 | + - method: searchCooperationContract | ||
20 | + route: | ||
21 | + post: /search | ||
22 | + - method: searchCooperationContractByUndertaker | ||
23 | + route: | ||
24 | + post: /search-by-undertaker | ||
25 | + - method: listCooperationContract | ||
26 | + route: | ||
27 | + get: / | ||
28 | + params: | ||
29 | + - name: offset | ||
30 | + - name: limit |
1 | +version: v1 | ||
2 | +kind: HttpApi | ||
3 | +metadata: | ||
4 | + service: cooperationMode | ||
5 | + path: /cooperation-modes | ||
6 | + endpoints: | ||
7 | + - method: createCooperationMode | ||
8 | + route: | ||
9 | + post: / | ||
10 | + - method: updateCooperationMode | ||
11 | + route: | ||
12 | + put: /{cooperationModeId} | ||
13 | + - method: getCooperationMode | ||
14 | + route: | ||
15 | + get: /{cooperationModeId} | ||
16 | + - method: removeCooperationMode | ||
17 | + route: | ||
18 | + delete: /{cooperationModeId} | ||
19 | + - method: searchCooperationMode | ||
20 | + route: | ||
21 | + post: /search | ||
22 | + - method: listCooperationMode | ||
23 | + route: | ||
24 | + get: / | ||
25 | + params: | ||
26 | + - name: offset | ||
27 | + - name: limit |
1 | +version: v1 | ||
2 | +kind: HttpApi | ||
3 | +metadata: | ||
4 | + service: cooperationProject | ||
5 | + path: /cooperation-projects | ||
6 | + endpoints: | ||
7 | + - method: releaseCooperationProject | ||
8 | + route: | ||
9 | + post: /release-cooperation-project | ||
10 | + - method: createCooperationProject | ||
11 | + route: | ||
12 | + post: / | ||
13 | + - method: updateCooperationProject | ||
14 | + route: | ||
15 | + put: /{cooperationProjectId} | ||
16 | + - method: getCooperationProject | ||
17 | + route: | ||
18 | + get: /{cooperationProjectId} | ||
19 | + - method: removeCooperationProject | ||
20 | + route: | ||
21 | + delete: /{cooperationProjectId} | ||
22 | + - method: searchCooperationProject | ||
23 | + route: | ||
24 | + post: /search | ||
25 | + - method: listCooperationProject | ||
26 | + route: | ||
27 | + get: / | ||
28 | + params: | ||
29 | + - name: offset | ||
30 | + - name: limit |
1 | +version: v1 | ||
2 | +kind: HttpApi | ||
3 | +metadata: | ||
4 | + service: creditAccount | ||
5 | + path: /credit-accounts | ||
6 | + endpoints: | ||
7 | + - method: createCreditAccount | ||
8 | + route: | ||
9 | + post: / | ||
10 | + - method: updateCreditAccount | ||
11 | + route: | ||
12 | + put: /{creditAccountId} | ||
13 | + - method: getCreditAccount | ||
14 | + route: | ||
15 | + get: /{creditAccountId} | ||
16 | + - method: removeCreditAccount | ||
17 | + route: | ||
18 | + delete: /{creditAccountId} | ||
19 | + - method: searchCreditAccount | ||
20 | + route: | ||
21 | + post: /search | ||
22 | + - method: payCreditAccount | ||
23 | + route: | ||
24 | + post: /pay | ||
25 | + - method: listCreditAccount | ||
26 | + route: | ||
27 | + get: / | ||
28 | + params: | ||
29 | + - name: offset | ||
30 | + - name: limit |
1 | +version: v1 | ||
2 | +kind: HttpApi | ||
3 | +metadata: | ||
4 | + service: dividendsEstimate | ||
5 | + path: /dividends-estimates | ||
6 | + endpoints: | ||
7 | + - method: createDividendsEstimate | ||
8 | + route: | ||
9 | + post: / | ||
10 | + - method: updateDividendsEstimate | ||
11 | + route: | ||
12 | + put: /{dividendsEstimateId} | ||
13 | + - method: getDividendsEstimate | ||
14 | + route: | ||
15 | + get: /{dividendsEstimateId} | ||
16 | + - method: removeDividendsEstimate | ||
17 | + route: | ||
18 | + delete: /{dividendsEstimateId} | ||
19 | + - method: cancelDividendsEstimate | ||
20 | + route: | ||
21 | + post: /{dividendsEstimateId}/cancel | ||
22 | + - method: searchDividendsEstimate | ||
23 | + route: | ||
24 | + post: /search | ||
25 | + - method: estimateDividendsIncentives | ||
26 | + route: | ||
27 | + post: /estimate-dividends-incentives | ||
28 | + - method: estimateMoneyIncentives | ||
29 | + route: | ||
30 | + post: /estimate-money-incentives | ||
31 | + - method: listMoneyIncentives | ||
32 | + route: | ||
33 | + get: /list-money-incentives | ||
34 | + - method: searchMoneyIncentives | ||
35 | + route: | ||
36 | + post: /search-money-incentives | ||
37 | + - method: listDividendsIncentives | ||
38 | + route: | ||
39 | + get: /list-dividends-incentives | ||
40 | + - method: searchDividendsIncentives | ||
41 | + route: | ||
42 | + post: /search-dividends-incentives | ||
43 | + - method: listDividendsEstimate | ||
44 | + route: | ||
45 | + get: / | ||
46 | + params: | ||
47 | + - name: offset | ||
48 | + - name: limit |
1 | +version: v1 | ||
2 | +kind: HttpApi | ||
3 | +metadata: | ||
4 | + service: dividendsOrder | ||
5 | + path: /dividends-orders | ||
6 | + endpoints: | ||
7 | + - method: createDividendsOrder | ||
8 | + route: | ||
9 | + post: / | ||
10 | + - method: updateDividendsOrder | ||
11 | + route: | ||
12 | + put: /{dividendsOrderId} | ||
13 | + - method: getDividendsOrder | ||
14 | + route: | ||
15 | + get: /{dividendsOrderId} | ||
16 | + - method: removeDividendsOrder | ||
17 | + route: | ||
18 | + delete: /{dividendsOrderId} | ||
19 | + - method: searchDividendsOrder | ||
20 | + route: | ||
21 | + post: /search | ||
22 | + - method: listDividendsOrder | ||
23 | + route: | ||
24 | + get: / | ||
25 | + params: | ||
26 | + - name: offset | ||
27 | + - name: limit |
1 | +version: v1 | ||
2 | +kind: HttpApi | ||
3 | +metadata: | ||
4 | + service: dividendsReturnedOrder | ||
5 | + path: /dividends-returned-orders | ||
6 | + endpoints: | ||
7 | + - method: createDividendsReturnedOrder | ||
8 | + route: | ||
9 | + post: / | ||
10 | + - method: updateDividendsReturnedOrder | ||
11 | + route: | ||
12 | + put: /{dividendsReturnedOrderId} | ||
13 | + - method: getDividendsReturnedOrder | ||
14 | + route: | ||
15 | + get: /{dividendsReturnedOrderId} | ||
16 | + - method: removeDividendsReturnedOrder | ||
17 | + route: | ||
18 | + delete: /{dividendsReturnedOrderId} | ||
19 | + - method: searchDividendsReturnedOrder | ||
20 | + route: | ||
21 | + post: /search | ||
22 | + - method: importDividendsReturnedOrder | ||
23 | + route: | ||
24 | + post: /import | ||
25 | + - method: listDividendsReturnedOrder | ||
26 | + route: | ||
27 | + get: / | ||
28 | + params: | ||
29 | + - name: offset | ||
30 | + - name: limit |
-
请 注册 或 登录 后发表评论