接口说明
1、查询订单评价数据。每页返回100条,pageIndex最小1,最大2147483647。
2、订单号和查询时间范围,二选一必填。开始和结束时间间隔最大半小时。
请求说明
HTTP请求方式:POST
返回数据格式:JSON
请求路径:api/morder/getordercomment
每页查询数量默认100条;订单号和查询时间不可同时为空。
请求参数
字段 | 类型 | 为空 | 长度 | 描述 |
---|---|---|---|---|
SaleNo | string | 否 | 0~26 | 订单号 |
BegCommtTime | DateTime | 否 | - | 开始时间(yyyy-MM-dd HH:mm:ss) |
EndCommtTime | DateTime | 否 | - | 结束时间(yyyy-MM-dd HH:mm:ss) |
SaleShopId | string | 是 | 1~16 | 渠道代码(销售门店) |
PageIndex | int | 是 | - | 默认1 |
请求参数示例代码(json对象)
{
"SaleNo": "r0905000129",
"BegCommtTime": "",
"EndCommtTime": "",
"ShopCode": "",
"PageIndex": 1
}
返回参数
字段 | 类型 | 描述 |
---|---|---|
SaleNo | string | 订单号 |
BegCommtTime | DateTime | 开始时间(yyyy-MM-dd HH:mm:ss) |
EndCommtTime | DateTime | 结束时间(yyyy-MM-dd HH:mm:ss) |
SaleShopCode | string | 渠道代码(销售门店) |
ServiceChannel | string | 服务门店 |
ServiceSaler | string | 服务导购 |
CommtTime | string | 评价时间 |
CommtScore1 | int | 一级评价 |
CommtScore2 | int | 二级评价 |
CommtScore3 | int | 三级评价 |
TotalScore | double | 总分 |
Content | string | 评价内容 |
string | 评价回复人 | |
CommtReplyTime | string | 回复时间 |
CommtReply | string | 回复内容 |
IsReply | bool | 是否可以回复 |
CommtSecondTags1 | string | 一级评论维度1下的二级维度标签组 |
CommtSecondTags2 | string | 二级评论维度2下的二级维度标签组 |
CommtSecondTags3 | string | 三级评论维度3下的二级维度标签组 |
CommtTotalSecondTags | string | 一级评论总评价下的二级维度标签组 |
IsCommtHistory | bool | 是否是历史数据 |
CmmtResultType | int | 0不参与好评/差评1好评2差评 |
系统级返回结果示例(json)
{
"PageCount": 1,
"Sign": "8D2E518CDA46DB14736643CAA96C800B69C26ECD",
"Result": [
{
"SaleNo": "r0905000129",
"SaleShopId": "MD001",
"ServiceChannel": "MD001",
"ServiceSaler": "MD0102",
"CommtTime": "2020-10-28 20:10:51",
"CommtScore1": 1,
"CommtScore2": 3,
"CommtScore3": 4,
"TotalScore": 3.0,
"Content": "快快快",
"CommtReplyUserId": "",
"CommtReplyTime": "0001-01-01 00:00:00",
"CommtReply": "",
"IsReply": false,
"CommtSecondTags1": "170237",
"CommtSecondTags2": "170233",
"CommtSecondTags3": "160232",
"CommtTotalSecondTags": "190232",
"IsCommtHistory": true
},
{
"SaleNo": "r0905000129",
"SaleShopId": "MD001",
"ServiceChannel": "MD001",
"ServiceSaler": "MD0102",
"CommtTime": "2020-10-28 20:10:51",
"CommtScore1": 1,
"CommtScore2": 3,
"CommtScore3": 4,
"TotalScore": 3.0,
"Content": "快快快",
"CommtReplyUserId": "",
"CommtReplyTime": "0001-01-01 00:00:00",
"CommtReply": "",
"IsReply": false,
"CommtSecondTags1": "170237",
"CommtSecondTags2": "170233",
"CommtSecondTags3": "160232",
"CommtTotalSecondTags": "190232",
"IsCommtHistory": true
}
],
"Status": true,
"StatusCode": 200,
"Msg": "成功",
"Timestamp": "20201204181855"
}