CLOUDWF SDK Auto Released By zhangzifa,Version:1.34.53
Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
2019-03-20 Version: 1.34.53
|
||||||
|
1, cloudwf: update bool type parameter
|
||||||
|
|
||||||
2019-03-20 Version: 1.34.52
|
2019-03-20 Version: 1.34.52
|
||||||
1, Update Dependency
|
1, Update Dependency
|
||||||
|
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ bool ConfigAutoRenewRequest::getAutoRenew()const
|
|||||||
void ConfigAutoRenewRequest::setAutoRenew(bool autoRenew)
|
void ConfigAutoRenewRequest::setAutoRenew(bool autoRenew)
|
||||||
{
|
{
|
||||||
autoRenew_ = autoRenew;
|
autoRenew_ = autoRenew;
|
||||||
setParameter("AutoRenew", AutoRenew ? "true" : "false");
|
setParameter("AutoRenew", autoRenew ? "true" : "false");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::string> ConfigAutoRenewRequest::getApList()const
|
std::vector<std::string> ConfigAutoRenewRequest::getApList()const
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ bool SaveApPortalConfigRequest::getPortalStatus()const
|
|||||||
void SaveApPortalConfigRequest::setPortalStatus(bool portalStatus)
|
void SaveApPortalConfigRequest::setPortalStatus(bool portalStatus)
|
||||||
{
|
{
|
||||||
portalStatus_ = portalStatus;
|
portalStatus_ = portalStatus;
|
||||||
setParameter("PortalStatus", PortalStatus ? "true" : "false");
|
setParameter("PortalStatus", portalStatus ? "true" : "false");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string SaveApPortalConfigRequest::getWhitelist()const
|
std::string SaveApPortalConfigRequest::getWhitelist()const
|
||||||
|
|||||||
Reference in New Issue
Block a user