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 @@ std::string BindPhoneRequest::getPhoneNumber()const
void BindPhoneRequest::setPhoneNumber(const std::string& phoneNumber)
{
phoneNumber_ = phoneNumber;
setParameter("PhoneNumber", phoneNumber);
setCoreParameter("PhoneNumber", phoneNumber);
}
long BindPhoneRequest::getAppKey()const
@@ -44,7 +44,7 @@ long BindPhoneRequest::getAppKey()const
void BindPhoneRequest::setAppKey(long appKey)
{
appKey_ = appKey;
setParameter("AppKey", std::to_string(appKey));
setCoreParameter("AppKey", std::to_string(appKey));
}
std::string BindPhoneRequest::getDeviceId()const
@@ -55,7 +55,7 @@ std::string BindPhoneRequest::getDeviceId()const
void BindPhoneRequest::setDeviceId(const std::string& deviceId)
{
deviceId_ = deviceId;
setParameter("DeviceId", deviceId);
setCoreParameter("DeviceId", deviceId);
}
std::string BindPhoneRequest::getAccessKeyId()const
@@ -66,6 +66,6 @@ std::string BindPhoneRequest::getAccessKeyId()const
void BindPhoneRequest::setAccessKeyId(const std::string& accessKeyId)
{
accessKeyId_ = accessKeyId;
setParameter("AccessKeyId", accessKeyId);
setCoreParameter("AccessKeyId", accessKeyId);
}