Rebuild sdk (#60)

* rebuild sdk

* fixed ut include Utils.h
This commit is contained in:
Axios
2019-08-14 14:34:09 +08:00
committed by GitHub
parent f3d9843e63
commit c43307bc80
11893 changed files with 462166 additions and 221301 deletions

View File

@@ -33,7 +33,7 @@ int QueryAuthenticationRequest::getLicenseType()const
void QueryAuthenticationRequest::setLicenseType(int licenseType)
{
licenseType_ = licenseType;
setParameter("LicenseType", std::to_string(licenseType));
setCoreParameter("LicenseType", std::to_string(licenseType));
}
std::string QueryAuthenticationRequest::getIotId()const
@@ -44,7 +44,7 @@ std::string QueryAuthenticationRequest::getIotId()const
void QueryAuthenticationRequest::setIotId(const std::string& iotId)
{
iotId_ = iotId;
setParameter("IotId", iotId);
setCoreParameter("IotId", iotId);
}
int QueryAuthenticationRequest::getPageSize()const
@@ -55,7 +55,7 @@ int QueryAuthenticationRequest::getPageSize()const
void QueryAuthenticationRequest::setPageSize(int pageSize)
{
pageSize_ = pageSize;
setParameter("PageSize", std::to_string(pageSize));
setCoreParameter("PageSize", std::to_string(pageSize));
}
int QueryAuthenticationRequest::getCurrentPage()const
@@ -66,7 +66,7 @@ int QueryAuthenticationRequest::getCurrentPage()const
void QueryAuthenticationRequest::setCurrentPage(int currentPage)
{
currentPage_ = currentPage;
setParameter("CurrentPage", std::to_string(currentPage));
setCoreParameter("CurrentPage", std::to_string(currentPage));
}
std::string QueryAuthenticationRequest::getDeviceName()const
@@ -77,7 +77,7 @@ std::string QueryAuthenticationRequest::getDeviceName()const
void QueryAuthenticationRequest::setDeviceName(const std::string& deviceName)
{
deviceName_ = deviceName;
setParameter("DeviceName", deviceName);
setCoreParameter("DeviceName", deviceName);
}
std::string QueryAuthenticationRequest::getProductKey()const
@@ -88,6 +88,6 @@ std::string QueryAuthenticationRequest::getProductKey()const
void QueryAuthenticationRequest::setProductKey(const std::string& productKey)
{
productKey_ = productKey;
setParameter("ProductKey", productKey);
setCoreParameter("ProductKey", productKey);
}