切换导航条
此项目
正在载入...
登录
allied-creation
/
document
·
提交
转到一个项目
GitLab
转到群组
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
差异文件
浏览文件
作者
陈志颖
2021-07-12 16:26:16 +0800
提交
5029d7214f025b9e5ed9ea5f3355db94e85428d6
2 个父辈
e0518caa
e168bba5
Merge branch 'master' of
http://gitlab.fjmaimaimai.com/allied-creation/document
隐藏空白字符变更
内嵌
并排对比
正在显示
10 个修改的文件
包含
202 行增加
和
1 行删除
allied-creation-basic/schemas/dictionary.yaml
allied-creation-basic/schemas/dictionaryItem.yaml
allied-creation-gateway/api/http/loginAccess.yaml
allied-creation-gateway/schemas/loginAccess.yml
allied-creation-gateway/services/loginAccess/methods/getQrcodeForLogin.yaml
allied-creation-gateway/services/loginAccess/methods/loginByAccount.yaml
allied-creation-gateway/services/loginAccess/methods/loginByScanQrcode.yaml
allied-creation-gateway/services/loginAccess/methods/loginBySmsCode.yaml
allied-creation-gateway/services/loginAccess/methods/loginInfoByAuthCode.yaml
allied-creation-gateway/services/loginAccess/service.yaml
allied-creation-basic/schemas/dictionary.yaml
0 → 100644
查看文件 @
5029d72
version
:
v1
kind
:
Schema
metadata
:
name
:
dictionary
description
:
字典
attributes
:
-
name
:
dictionaryId
description
:
字典编号 主键
type
:
primitive
:
int
-
name
:
dictCode
description
:
字典编码
type
:
primitive
:
string
-
name
:
dictName
description
:
字典名称
type
:
primitive
:
string
-
name
:
enableStatus
description
:
启用状态(启用:1 禁用:2)
type
:
primitive
:
int
-
name
:
desc
description
:
备注信息
type
:
primitive
:
string
-
name
:
dictItems
description
:
字典值列表
type
:
array
:
dictionaryItem
...
...
allied-creation-basic/schemas/dictionaryItem.yaml
0 → 100644
查看文件 @
5029d72
version
:
v1
kind
:
Schema
metadata
:
name
:
dictionaryItem
description
:
字典明细项
attributes
:
-
name
:
itemCode
description
:
项编码
type
:
primitive
:
string
-
name
:
itemLabel
description
:
项标签
type
:
primitive
:
string
-
name
:
itemValue
description
:
值
type
:
primitive
:
string
-
name
:
enableStatus
description
:
启用状态(启用:1 禁用:2)
type
:
primitive
:
string
-
name
:
sort
description
:
显示序号
type
:
primitive
:
int
...
...
allied-creation-gateway/api/http/loginAccess.yaml
0 → 100644
查看文件 @
5029d72
version
:
v1
kind
:
HttpApi
metadata
:
service
:
loginAccess
path
:
/auth
endpoints
:
-
method
:
loginByAccount
route
:
post
:
/by-account
-
method
:
loginBySmsCode
route
:
post
:
/by-smscode
-
method
:
loginByScanQrcode
route
:
get
:
/by-qrcode
-
method
:
getQrcodeForLogin
route
:
get
:
/get-qrcode
-
method
:
loginInfoByAuthCode
route
:
get
:
/profile
...
...
allied-creation-gateway/schemas/loginAccess.yml
查看文件 @
5029d72
...
...
@@ -9,7 +9,7 @@ metadata:
type
:
primitive
:
string
-
name
:
platform
description
:
对应平台
description
:
对应平台
,[web,mobile]
type
:
primitive
:
string
-
name
:
companyId
...
...
allied-creation-gateway/services/loginAccess/methods/getQrcodeForLogin.yaml
0 → 100644
查看文件 @
5029d72
version
:
v1
kind
:
Method
metadata
:
name
:
getQrcodeForLogin
type
:
query
description
:
获取扫码登录用的二维码信息
result
:
-
name
:
authCode
description
:
登录认证的凭证
type
:
primitive
:
string
-
name
:
imgBase64
description
:
base64形式的二维码图片
type
:
primitive
:
string
-
name
:
loginAccess
type
:
schema
:
loginAccess
required
:
true
...
...
allied-creation-gateway/services/loginAccess/methods/loginByAccount.yaml
0 → 100644
查看文件 @
5029d72
version
:
v1
kind
:
Method
metadata
:
name
:
loginByAccount
type
:
query
description
:
使用手机号和密码登录系统
payload
:
-
name
:
account
description
:
账号
type
:
primitive
:
string
-
name
:
passwd
description
:
密码
type
:
primitive
:
string
result
:
-
name
:
authcode
description
:
登录认证的凭证
type
:
primitive
:
string
-
name
:
loginAccess
type
:
schema
:
loginAccess
required
:
true
...
...
allied-creation-gateway/services/loginAccess/methods/loginByScanQrcode.yaml
0 → 100644
查看文件 @
5029d72
version
:
v1
kind
:
Method
metadata
:
name
:
loginByScanQrcode
type
:
query
description
:
询问扫二维码方式登录的状态
payload
:
-
name
:
authCode
description
:
登录认证的凭证
type
:
primitive
:
string
result
:
-
name
:
accessToken
description
:
真正的登录凭证
type
:
primitive
:
string
-
name
:
isLogin
description
:
是否可以登录
type
:
primitive
:
string
-
name
:
loginAccess
type
:
schema
:
loginAccess
required
:
true
...
...
allied-creation-gateway/services/loginAccess/methods/loginBySmsCode.yaml
0 → 100644
查看文件 @
5029d72
version
:
v1
kind
:
Method
metadata
:
name
:
loginBySmsCode
type
:
query
description
:
使用手机号和短信验证码登录系统
payload
:
-
name
:
phone
description
:
手机号
type
:
primitive
:
string
-
name
:
smsCode
description
:
短信验证码
type
:
primitive
:
string
result
:
-
name
:
authcode
description
:
登录认证的凭证
type
:
primitive
:
string
-
name
:
loginAccess
type
:
schema
:
loginAccess
required
:
true
...
...
allied-creation-gateway/services/loginAccess/methods/loginInfoByAuthCode.yaml
0 → 100644
查看文件 @
5029d72
version
:
v1
kind
:
Method
metadata
:
name
:
loginInfoByAuthCode
type
:
query
description
:
获取具体的进入系统的凭证
payload
:
-
name
:
authCode
description
:
登录认证的凭证
type
:
primitive
:
string
-
name
:
companyId
description
:
公司id
type
:
primitive
:
string
-
name
:
organizationId
description
:
组织id
type
:
primitive
:
string
result
:
-
name
:
accessToken
description
:
登录系统的凭证
type
:
primitive
:
string
-
name
:
loginAccess
type
:
schema
:
loginAccess
required
:
true
...
...
allied-creation-gateway/services/loginAccess/service.yaml
0 → 100644
查看文件 @
5029d72
version
:
v1
kind
:
Service
metadata
:
name
:
loginAccess
description
:
登录访问
...
...
请
注册
或
登录
后发表评论