productPlan.yaml
873 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
version: v1
kind: HttpApi
metadata:
service: productPlan
path: /product-plans
endpoints:
- method: createProductPlan
route:
post: /
- method: updateProductPlan
route:
put: /{productPlanId}
- method: getProductPlan
route:
get: /{productPlanId}
- method: removeProductPlan
route:
delete: /{productPlanId}
- method: listProductPlan
route:
get: /
params:
- name: offset
- name: limit
- method: receiveMaterial
route:
post: /receive-material
- method: returnMaterial
route:
post: /return-material
- method: setOnline
route:
post: /set-online
- method: setOnline
route:
post: /set-offline
- method: switch
route:
post: /switch
- method: submitProductRecord
route:
post: /submit-product-record