AEGIS SDK Auto Released By lai.zhoulai,Version:1.36.5

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
haowei.yao
2019-04-15 14:17:29 +08:00
parent a99e207d8f
commit 643a939c6d
884 changed files with 64083 additions and 2289 deletions

View File

@@ -33,7 +33,7 @@ long GetEntityListRequest::getGroupId()const
void GetEntityListRequest::setGroupId(long groupId)
{
groupId_ = groupId;
setParameter("GroupId", std::to_string(groupId));
setCoreParameter("GroupId", std::to_string(groupId));
}
int GetEntityListRequest::getPageSize()const
@@ -44,7 +44,7 @@ int GetEntityListRequest::getPageSize()const
void GetEntityListRequest::setPageSize(int pageSize)
{
pageSize_ = pageSize;
setParameter("PageSize", std::to_string(pageSize));
setCoreParameter("PageSize", std::to_string(pageSize));
}
std::string GetEntityListRequest::getRemark()const
@@ -55,7 +55,7 @@ std::string GetEntityListRequest::getRemark()const
void GetEntityListRequest::setRemark(const std::string& remark)
{
remark_ = remark;
setParameter("Remark", remark);
setCoreParameter("Remark", remark);
}
std::string GetEntityListRequest::getEventType()const
@@ -66,7 +66,7 @@ std::string GetEntityListRequest::getEventType()const
void GetEntityListRequest::setEventType(const std::string& eventType)
{
eventType_ = eventType;
setParameter("EventType", eventType);
setCoreParameter("EventType", eventType);
}
int GetEntityListRequest::getCurrentPage()const
@@ -77,7 +77,7 @@ int GetEntityListRequest::getCurrentPage()const
void GetEntityListRequest::setCurrentPage(int currentPage)
{
currentPage_ = currentPage;
setParameter("CurrentPage", std::to_string(currentPage));
setCoreParameter("CurrentPage", std::to_string(currentPage));
}
std::string GetEntityListRequest::getRegionNo()const
@@ -88,6 +88,6 @@ std::string GetEntityListRequest::getRegionNo()const
void GetEntityListRequest::setRegionNo(const std::string& regionNo)
{
regionNo_ = regionNo;
setParameter("RegionNo", regionNo);
setCoreParameter("RegionNo", regionNo);
}