文档
测试

销售额用户详情接口

GET
http://[port]:[port]/insoApp/my/sala/detail

请求参数

参数名
类型
描述
必填
userId
int
用户ID
必填
type
int
类型(1,2,3)
必填
date
string
时间(非必填)
必填

响应参数

参数名
类型
描述
必填
msg
string
必填
code
int
必填
data
object
数据字典
必填
salaMoney
string
销售额
必填
myUserSalaDetailVoList
array
数据列表
必填
orderId
object
订单ID
必填
money
string
金额
必填
timeCreate
string
成交时间
必填

请求示例

``` { "userId": 84, "type": 1, "date": null, }

响应示例

``` { "msg": "success", "code": 200, "data": { "salaMoney": "10995.19", "myUserSalaDetailVoList": [ { "orderId": null, "money": "9999.00", "timeCreate": "2020-08-26 14:34:33" }, { "orderId": null, "money": "2.19", "timeCreate": "2020-05-18 14:34:33" }, { "orderId": null, "money": "3.00", "timeCreate": "2020-08-18 14:34:33" }, { "orderId": null, "money": "991.00", "timeCreate": "2020-08-27 14:34:33" } ] } }