Skip to content
On this page

7.8 售后类型字典数据

接口说明:

MethodURLContentType
GET/api/v1/aftersale/getAfterSaleTypeDicapplication/json

请求参数说明:

字段名类型是否必填示例值描述

返回结果说明:

参数类型说明描述
codeInteger编码(4、5、6)
descstring描述 (退货、换货、维修)

请求示例

/api/v1/aftersale/getAfterSaleTypeDic

返回数据示例:

json
{
  "success": true,
  "message": "成功",
  "code": "000",
  "data": [
    {
      "code": 4,
      "desc": "退货"
    },
    {
      "code": 5,
      "desc": "换货"
    },
    {
      "code": 6,
      "desc": "维修"
    }
  ]
}