Skip to main content

getClientTypeList:获取客户类型

入参

参数名称

是否必须

类型

描述

sKey

Y

String

令牌

入参示例
{
    "f":"getClientTypeList",
    "v":{
        "sKey":"d6eeb8243c589b7f5dc840b3a4c0a31a"
    }
}
返回参数

参数名称

类型

描述

rStatus

String

状态码 100:正常 其他:异常

message

String

运行信息

rData

Object

具体数据

rData参数

参数名称

类型

描述

typeName

String

类型名

typeID

String

DHB类型ID

erpID

Int

erp系统id 唯一标识

返参示例
{
    "rStatus": 100,
    "message": "获取客户类型(等级)信息成功",
    "rData": [
        {
            "typeName": "100%",
            "typeID": "1416",
            "erpID": null
        },
        {
            "typeName": "80%",
            "typeID": "1426",
            "erpID": null
        },
        {
            "typeName": "60%",
            "typeID": "2233",
            "erpID": null
        },
        {
            "typeName": "50%",
            "typeID": "2234",
            "erpID": null
        },
        {
            "typeName": "30%",
            "typeID": "2235",
            "erpID": null
        },
        {
            "typeName": "90%",
            "typeID": "3295",
            "erpID": "2020050801"
        }
    ]
}