切换导航条
此项目
正在载入...
登录
allied-creation
/
document
·
提交
转到一个项目
GitLab
转到群组
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
yangfu
2021-12-06 15:44:39 +0800
提交
e6be14100f71e3f8f1e3a43e5cdc9c1d6c4483b3
1 个父辈
b6a396c3
block chain edit
隐藏空白字符变更
内嵌
并排对比
正在显示
19 个修改的文件
包含
236 行增加
和
0 行删除
allied-creation-user/api/http/blockChain.yaml
allied-creation-user/api/http/menu.yaml
allied-creation-user/attributes/block_chain/data.yaml
allied-creation-user/attributes/block_chain/hash.yaml
allied-creation-user/attributes/block_chain/issueId.yaml
allied-creation-user/attributes/block_chain/primaryId.yaml
allied-creation-user/attributes/block_chain/source.yaml
allied-creation-user/attributes/block_chain/upChainId.yaml
allied-creation-user/attributes/block_chain/upChainStatus.yaml
allied-creation-user/schemas/upChain.yaml
allied-creation-user/services/blockChain/methods/createBlockChain.yaml
allied-creation-user/services/blockChain/methods/getBlockChain.yaml
allied-creation-user/services/blockChain/methods/listBlockChain.yaml
allied-creation-user/services/blockChain/methods/removeBlockChain.yaml
allied-creation-user/services/blockChain/methods/upChain.yaml
allied-creation-user/services/blockChain/methods/updateBlockChain.yaml
allied-creation-user/services/blockChain/service.yaml
allied-creation-user/services/menu/methods/batchDeleteMenu.yaml
allied-creation-user/services/menu/methods/batchEnableMenu.yaml
allied-creation-user/api/http/blockChain.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
HttpApi
metadata
:
service
:
blockChain
path
:
/block-chains
endpoints
:
-
method
:
createBlockChain
route
:
post
:
/
-
method
:
updateBlockChain
route
:
put
:
/{blockChainId}
-
method
:
getBlockChain
route
:
get
:
/{blockChainId}
-
method
:
removeBlockChain
route
:
delete
:
/{blockChainId}
-
method
:
listBlockChain
route
:
get
:
/
params
:
-
name
:
offset
-
name
:
limit
...
...
allied-creation-user/api/http/menu.yaml
查看文件 @
e6be141
...
...
@@ -19,3 +19,9 @@ metadata:
-
method
:
listMenu
route
:
post
:
/search
-
method
:
batchDeleteMenu
route
:
post
:
/batch-delete
-
method
:
batchEnableMenu
route
:
post
:
/batch-enable
...
...
allied-creation-user/attributes/block_chain/data.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Attribute
metadata
:
name
:
data
description
:
数据体
type
:
primitive
:
string
...
...
allied-creation-user/attributes/block_chain/hash.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Attribute
metadata
:
name
:
hash
description
:
数据块hash
type
:
primitive
:
string
...
...
allied-creation-user/attributes/block_chain/issueId.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Attribute
metadata
:
name
:
issueId
description
:
溯源ID 标记同一个系列的数据;例如订单相关事件
type
:
primitive
:
string
...
...
allied-creation-user/attributes/block_chain/primaryId.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Attribute
metadata
:
name
:
primaryId
description
:
来源数据唯一ID
type
:
primitive
:
string
...
...
allied-creation-user/attributes/block_chain/source.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Attribute
metadata
:
name
:
source
description
:
数据来源 例如:app.model
type
:
primitive
:
string
...
...
allied-creation-user/attributes/block_chain/upChainId.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Attribute
metadata
:
name
:
upChainId
description
:
上链数据唯一标识
type
:
primitive
:
int64
...
...
allied-creation-user/attributes/block_chain/upChainStatus.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Attribute
metadata
:
name
:
upChainStatus
description
:
上链状态 1:成功 2:失败
type
:
primitive
:
int
...
...
allied-creation-user/schemas/upChain.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Schema
metadata
:
name
:
upChain
description
:
上链数据
attributes
:
-
ref
:
upChainId
required
:
true
-
ref
:
source
required
:
true
-
ref
:
primaryId
required
:
true
-
ref
:
issueId
required
:
true
-
ref
:
data
required
:
true
-
ref
:
hash
required
:
true
-
ref
:
upChainStatus
required
:
true
-
ref
:
createdAt
required
:
true
...
...
allied-creation-user/services/blockChain/methods/createBlockChain.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Method
metadata
:
name
:
createBlockChain
type
:
command
description
:
创建
payload
:
-
ref
:
upChainId
required
:
true
result
:
-
name
:
upChain
type
:
schema
:
upChain
required
:
true
...
...
allied-creation-user/services/blockChain/methods/getBlockChain.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Method
metadata
:
name
:
getBlockChain
type
:
query
description
:
返回
payload
:
-
ref
:
upChainId
required
:
true
result
:
-
name
:
upChain
type
:
schema
:
upChain
required
:
true
...
...
allied-creation-user/services/blockChain/methods/listBlockChain.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Method
metadata
:
name
:
listBlockChain
type
:
query
description
:
返回列表
payload
:
-
ref
:
offset
required
:
true
-
ref
:
limit
required
:
true
result
:
-
ref
:
count
required
:
true
-
name
:
upChains
type
:
array
:
upChain
required
:
true
...
...
allied-creation-user/services/blockChain/methods/removeBlockChain.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Method
metadata
:
name
:
removeBlockChain
type
:
command
description
:
移除
payload
:
-
ref
:
upChainId
required
:
true
result
:
-
name
:
upChain
type
:
schema
:
upChain
required
:
true
...
...
allied-creation-user/services/blockChain/methods/upChain.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Method
metadata
:
name
:
upChain
type
:
command
description
:
数据上链
payload
:
-
ref
:
source
required
:
true
-
ref
:
primaryId
required
:
true
-
ref
:
issueId
required
:
true
-
ref
:
data
required
:
true
result
:
-
name
:
upChain
type
:
schema
:
upChain
required
:
true
...
...
allied-creation-user/services/blockChain/methods/updateBlockChain.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Method
metadata
:
name
:
updateBlockChain
type
:
command
description
:
更新
payload
:
-
ref
:
upChainId
required
:
true
result
:
-
name
:
upChain
type
:
schema
:
upChain
required
:
true
...
...
allied-creation-user/services/blockChain/service.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Service
metadata
:
name
:
blockChain
description
:
区块链服务
...
...
allied-creation-user/services/menu/methods/batchDeleteMenu.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Method
metadata
:
name
:
batchDeleteMenu
type
:
command
description
:
批量删除菜单
payload
:
-
name
:
menuIds
description
:
菜单ID列表
type
:
array
:
int64
result
:
-
name
:
menu
type
:
schema
:
menu
required
:
true
...
...
allied-creation-user/services/menu/methods/batchEnableMenu.yaml
0 → 100644
查看文件 @
e6be141
version
:
v1
kind
:
Method
metadata
:
name
:
batchEnableMenu
type
:
command
description
:
批量启用菜单
payload
:
-
name
:
menuIds
description
:
菜单ID列表
type
:
array
:
int64
-
name
:
status
description
:
菜单状态
type
:
primitive
:
int
result
:
-
name
:
menu
type
:
schema
:
menu
required
:
true
...
...
请
注册
或
登录
后发表评论