feat(work): 新增会议报名相关接口

This commit is contained in:
Fu Diwei
2023-06-14 21:27:33 +08:00
parent 23e7b62fa6
commit 8eafc34ab9
29 changed files with 992 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{
"meetingid": "meetingid11234",
"action": 1,
"enroll_id_list": [
"mexxxxxxx"
]
}

View File

@@ -0,0 +1,5 @@
{
"errcode": 0,
"errmsg": "ok",
"handled_count": 10
}

View File

@@ -0,0 +1,8 @@
{
"meetingid": "meetingid11234",
"enroll_id_list": [
{
"enroll_id": "123456"
}
]
}

View File

@@ -0,0 +1,5 @@
{
"errcode": 0,
"errmsg": "ok",
"total_count": 1
}

View File

@@ -0,0 +1,20 @@
{
"errcode": 0,
"errmsg": "ok",
"approve_type": 1,
"is_collect_question": 1,
"no_registration_needed_for_staff": true,
"question_list": [
{
"is_required": 1,
"question_type": 1,
"question_title": "acd",
"special_type": 1,
"option_list": [
{
"content": "asr"
}
]
}
]
}

View File

@@ -0,0 +1,11 @@
{
"meetingid": "meetingid11234",
"enroll_list": [
{
"userid": "USERID",
"area": "86",
"phone_number": "13333333333",
"nick_name": "NICKNAME"
}
]
}

View File

@@ -0,0 +1,15 @@
{
"errcode": 0,
"errmsg": "ok",
"total_count": 1,
"enroll_list": [
{
"enroll_id": "mexxxxx",
"userid": "USERID",
"area": "86",
"phone_number": "13333333333",
"nick_name": "NICKNAME",
"enroll_code": "CODE"
}
]
}

View File

@@ -0,0 +1,6 @@
{
"meetingid": "meetingid11234",
"status": 0,
"cursor": "CURSOR",
"limit": 10
}

View File

@@ -0,0 +1,31 @@
{
"errcode": 0,
"errmsg": "ok",
"has_more": false,
"next_cursor": "CURSOR",
"enroll_list": [
{
"enroll_id": "mexxxxxx",
"enroll_time": "2023/03/23 14:00",
"enroll_source_type": 1,
"nick_name": "NICKNAME",
"status": 1,
"userid": "USERID",
"tmp_openid": "TMP_OPENID",
"enroll_code": "CODE",
"answer_list": [
{
"answer_content": [
"CONTENT1",
"CONTENT2"
],
"is_required": 1,
"question_num": 10,
"question_title": "TITLE",
"question_type": 1,
"special_type": 1
}
]
}
]
}

View File

@@ -0,0 +1,8 @@
{
"meetingid": "meetingid11234",
"sorting_rules": 1,
"tmp_openid_list": [
"msaaaaaaaa",
"msbbbbbbbb"
]
}

View File

@@ -0,0 +1,14 @@
{
"errcode": 0,
"errmsg": "ok",
"enroll_id_list": [
{
"tmp_openid": "msaaaaaaaa",
"enroll_id": "mexxxxxxx"
},
{
"tmp_openid": "msbbbbbbbb",
"enroll_id": "meyyyyyyy"
}
]
}

View File

@@ -0,0 +1,19 @@
{
"meetingid": "MEETINGID1",
"approve_type": 1,
"is_collect_question": 1,
"no_registration_needed_for_staff": true,
"question_list": [
{
"is_required": 1,
"question_type": 1,
"question_title": "acd",
"special_type": 1,
"option_list": [
{
"content": "asr"
}
]
}
]
}

View File

@@ -0,0 +1,5 @@
{
"errcode": 0,
"errmsg": "ok",
"question_count": 12
}