-
Notifications
You must be signed in to change notification settings - Fork 0
/
接口说明.txt
69 lines (55 loc) · 1.53 KB
/
接口说明.txt
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
AddPublicMessagePic 添加记录(带图片), AddPublucMessage 添加记录 不带图片(默认 image是"")
需要字段
user_id --> string
title, --> string
category, --> int
phone, --> string
description --> string
type --> int (目前只有两种兼职or全职 0 or 1)
top --> int (0,1,2,3,4)
name --> string
gender --> int(0 or 1)
image --> string
返回
{'state':1} 表示添加成功
{'state':0} 表示添加失败
UpdatePublishMessage 更新记录,当有人查看当前记录的时候,更新积分
需要字段
id --> 当前记录的id
返回
{'state':1, 'record':record} 若更新成功,状态为1, 并且返回该条记录,因为要给用户显示这条记录的全部信息
{'state':0} 更新失败
PublishMeaagesList 展示记录列表
需要字段
pc --> 当前页
返回
{'state':1, 'records':pb} 成功,返回记录列表
{'state':0}
DelelteMessage 删除记录
需要字段
id --> 删除记录的id
返回
{'state':1,'state':0}
UserLogin 获取用户openid
需要的字段
appid
appsecret
code
返回
{'state':1, 'uuid'}
{'state':0}
ShowUserInfo 用户查看自己发布的信息
需要字段
user_id --> 用户id
返回
{’state‘:1, 'records':pb} 若成功,则返回该用户的记录列表
{'state':0}
RequestHumanCheck 当前发布信息不合法,用户可以申请人工审核
id --> 当前记录的id
返回
{'state':1, 'state':0}
ModifyTelephoneNumber 用户修改自己的手机号
user_id --> 用户id
telephone -->手机号
返回
{'state':1, 'state':0}