请求参数：
{
    "Action": "GetOverviewInfoByUser",
    "ActionBody": {
        "userId": "011",
        "productTypeOne": "qcfw"
    }
}

返回信息：
正常返回：
{
    "Response": {
        "Status": 1,
		"DataSet":"",
        "RequestId": "eac6b301-a322-493a-8e36-83b295459397"
    }
}
参数说明：
   "Status": 1,//1成功，否则错误
   "DataSet":"",//为JSON，需要JSON.parse进行转换


   
异常返回：
{
    "Response": {
        "Status": -1,
		"Error":{
			"Code":"Fail",
			"Message":"错误信息"
		},
        "RequestId": "eac6b301-a322-493a-8e36-83b295459397"
    }
}   