>獲取當前登錄用戶的下級列表(按照最后操作的時間排序)
~~~[api]
get:/index.php/member/Apirecord/member_user_record_list
<<<
success
{
"err": 0,
"data": [
{
"id": 10,
"name": "小怪獸0",
"headPath": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png",
"last_record": {
"id": 10,
"content": "小怪獸0",
"addtime": 12345678910,
"sign": "product"
}
}
]
}
<<<
error
{
"err": 1,
"code": 1000,
"content": "錯誤信息"
}
~~~
>獲取某個用戶的操作記錄
~~~[api]
get:/index.php/member/Apirecord/get_record_list
string:sign_name= #記錄的內容標識
int:userid= #獲取用戶的id
int:pagesize=10#每頁顯示個數
int:page=1#顯示頁碼數
string:sort= id #排序字段
string:sort_type= asc#排序類型
<<<
success
{
"err": 0,
"userInfo": {
"id": 10,
"name": "小怪獸0",
"headPath": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png"
},
"data": [
{
"id": 10,
"addtime": 123456789,
"sign": "product",
"content": "",
}
]
}
<<<
error
{
"err": 1,
"code": 1000,
"content": "錯誤信息"
}
~~~
>獲取當前登錄用戶的操作記錄
~~~[api]
get:/index.php/member/Apirecord/member_get_record_list
string:sign_name= #記錄的內容標識
int:pagesize=10#每頁顯示個數
int:page=1#顯示頁碼數
string:sort= id #排序字段
string:sort_type= asc#排序類型
<<<
success
{
"err": 0,
"userInfo": {
"id": 10,
"name": "小怪獸0",
"headPath": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png"
},
"data": [
{
"id": 10,
"addtime": 123456789,
"sign": "product",
"content": ""
}
]
}
<<<
error
{
"err": 1,
"code": 1000,
"content": "錯誤信息"
}
~~~