Generated 2016-11-11 for aegis.

This commit is contained in:
sdk-team
2019-09-16 02:57:02 +08:00
parent 441afe4150
commit 6a6423a1ac
590 changed files with 7843 additions and 8877 deletions

View File

@@ -35,13 +35,9 @@ DescribeScreenBizStatSimpleQueryResultResult::~DescribeScreenBizStatSimpleQueryR
void DescribeScreenBizStatSimpleQueryResultResult::parse(const std::string &payload)
{
Json::CharReaderBuilder builder;
Json::CharReader *reader = builder.newCharReader();
Json::Value *val;
Json::Reader reader;
Json::Value value;
JSONCPP_STRING *errs;
reader->parse(payload.data(), payload.data() + payload.size(), val, errs);
value = *val;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
auto allTrendDataArr = value["TrendDataArr"]["BizStatTrendDOS"];
for (auto value : allTrendDataArr)