Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
_milo
Great Teamwork
提交
6de1f08d
Great Teamwork
项目概览
_milo
/
Great Teamwork
通知
13
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Great Teamwork
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
6de1f08d
编写于
5月 26, 2023
作者:
M
MicroMilo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
消息设计参考
上级
7404692f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
100 addition
and
2 deletion
+100
-2
alpha/admin/uniCloud-aliyun/database/mustgo-registration.schema.json
.../uniCloud-aliyun/database/mustgo-registration.schema.json
+28
-1
alpha/admin/uniCloud-aliyun/database/mustgo-user.schema.json
alpha/admin/uniCloud-aliyun/database/mustgo-user.schema.json
+72
-1
未找到文件。
alpha/admin/uniCloud-aliyun/database/mustgo-registration.schema.json
浏览文件 @
6de1f08d
{
"bsonType"
:
"object"
,
"required"
:[],
"permission"
:{
"read"
:
true
,
"create"
:
true
,
"update"
:
true
,
"delete"
:
true
},
"properties"
:{
"_id"
:{
"title"
:
"id"
,
"description"
:
"ID,系统自动生成"
},
"team_activity_id"
:{
"bsonType"
:
"string"
,
"foreignKey"
:
"mustgo-team-activity._id"
,
"title"
:
"小队活动id"
,
"description"
:
"报名信息所属小队活动id"
},
"owner_id"
:{
"bsonType"
:
"string"
,
"foreignKey"
:
"mustgo-user._id"
,
"title"
:
"用户id"
,
"description"
:
"报名者id"
}}}
\ No newline at end of file
{
"bsonType"
:
"object"
,
"required"
:
[],
"permission"
:
{
"read"
:
true
,
"create"
:
true
,
"update"
:
true
,
"delete"
:
true
},
"properties"
:
{
"_id"
:
{
"title"
:
"id"
,
"description"
:
"ID,系统自动生成"
},
"team_activity_id"
:
{
"bsonType"
:
"string"
,
"foreignKey"
:
"mustgo-team-activity._id"
,
"title"
:
"小队活动id"
,
"description"
:
"报名信息所属小队活动id"
},
"owner_id"
:
{
"bsonType"
:
"string"
,
"foreignKey"
:
"mustgo-user._id"
,
"title"
:
"用户id"
,
"description"
:
"报名者id"
}
}
}
\ No newline at end of file
alpha/admin/uniCloud-aliyun/database/mustgo-user.schema.json
浏览文件 @
6de1f08d
{
"bsonType"
:
"object"
,
"required"
:[],
"permission"
:{
"read"
:
true
,
"create"
:
true
,
"update"
:
true
,
"delete"
:
true
},
"properties"
:{
"_id"
:{
"title"
:
"id"
,
"description"
:
"ID,系统自动生成"
},
"name"
:{
"bsonType"
:
"string"
,
"title"
:
"姓名"
,
"description"
:
"用户姓名"
},
"icon"
:{
"bsonType"
:
"string"
,
"title"
:
"头像"
,
"description"
:
"用户头像"
,
"defaultValue"
:
"https:
\/\/
mp-6f6feaec-a026-4402-8e8d-18f7572890da.cdn.bspapp.com
\/
cloudstorage
\/
433d3cc6-4b8f-475c-83e1-35acc747cab2.jpg"
},
"gender"
:{
"bsonType"
:
"string"
,
"title"
:
"性别"
,
"description"
:
"用户性别"
},
"password"
:{
"bsonType"
:
"string"
,
"title"
:
"密码"
,
"description"
:
"用户密码"
},
"phone_num"
:{
"bsonType"
:
"string"
,
"title"
:
"手机号码"
,
"description"
:
"用户手机号码"
},
"team_id"
:{
"bsonType"
:
"string"
,
"defaultValue"
:
""
,
"title"
:
"小队id"
,
"description"
:
"用户所属小队id"
,
"foreignKey"
:
"mustgo-team._id"
},
"school"
:{
"bsonType"
:
"string"
,
"title"
:
"学校"
,
"description"
:
"用户所属学校"
},
"type"
:{
"bsonType"
:
"string"
,
"foreignKey"
:
"mustgo-role._id"
,
"title"
:
"类型"
,
"description"
:
"用户类型"
},
"total_running_distance"
:{
"bsonType"
:
"double"
,
"defaultValue"
:
0
,
"title"
:
"总跑步距离"
,
"description"
:
"用户总跑步距离"
},
"total_walking_distance"
:{
"bsonType"
:
"double"
,
"defaultValue"
:
0
,
"title"
:
"总健走距离"
,
"description"
:
"用户总健走距离"
}}}
\ No newline at end of file
{
"bsonType"
:
"object"
,
"required"
:
[],
"permission"
:
{
"read"
:
true
,
"create"
:
true
,
"update"
:
true
,
"delete"
:
true
},
"properties"
:
{
"_id"
:
{
"title"
:
"id"
,
"description"
:
"ID,系统自动生成"
},
"name"
:
{
"bsonType"
:
"string"
,
"title"
:
"姓名"
,
"description"
:
"用户姓名"
},
"icon"
:
{
"bsonType"
:
"string"
,
"title"
:
"头像"
,
"description"
:
"用户头像"
,
"defaultValue"
:
"https:
\/\/
mp-6f6feaec-a026-4402-8e8d-18f7572890da.cdn.bspapp.com
\/
cloudstorage
\/
433d3cc6-4b8f-475c-83e1-35acc747cab2.jpg"
},
"gender"
:
{
"bsonType"
:
"string"
,
"title"
:
"性别"
,
"description"
:
"用户性别"
},
"password"
:
{
"bsonType"
:
"string"
,
"title"
:
"密码"
,
"description"
:
"用户密码"
},
"phone_num"
:
{
"bsonType"
:
"string"
,
"title"
:
"手机号码"
,
"description"
:
"用户手机号码"
},
"team_id"
:
{
"bsonType"
:
"string"
,
"defaultValue"
:
""
,
"title"
:
"小队id"
,
"description"
:
"用户所属小队id"
,
"foreignKey"
:
"mustgo-team._id"
},
"school"
:
{
"bsonType"
:
"string"
,
"title"
:
"学校"
,
"description"
:
"用户所属学校"
},
"type"
:
{
"bsonType"
:
"string"
,
"foreignKey"
:
"mustgo-role._id"
,
"title"
:
"类型"
,
"description"
:
"用户类型"
},
"total_running_distance"
:
{
"bsonType"
:
"double"
,
"defaultValue"
:
0
,
"title"
:
"总跑步距离"
,
"description"
:
"用户总跑步距离"
},
"total_walking_distance"
:
{
"bsonType"
:
"double"
,
"defaultValue"
:
0
,
"title"
:
"总健走距离"
,
"description"
:
"用户总健走距离"
}
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录