From 442f784284470e9aad15b80b12a435e002d0f8c5 Mon Sep 17 00:00:00 2001 From: "haowei.yao" Date: Fri, 30 Mar 2018 19:17:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=B1=E8=8D=A3=E6=97=B8=E5=8F=91=E8=B5=B7?= =?UTF-8?q?=E7=9A=84TESLAMAXCOMPUTE=20SDK=E8=87=AA=E5=8A=A8=E5=8F=91?= =?UTF-8?q?=E5=B8=83,=20=E7=89=88=E6=9C=AC=E5=8F=B7=EF=BC=9A1.3.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: haowei.yao --- CHANGELOG | 3 +++ VERSION | 2 +- .../model/QueryCustomerSaleInfoRequest.h | 6 +++--- .../src/model/QueryCustomerSaleInfoRequest.cc | 10 +++++----- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 87c1fe630..dc6fdd8ee 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2018-03-30 Version: 1.3.8 +1, API QueryCustomerSaleInfo arguments update. + 2018-03-29 Version: 1.3.7 1, edit FetchLibraries return param format diff --git a/VERSION b/VERSION index 8ed486ab7..06c7347f0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.7 \ No newline at end of file +1.3.8 \ No newline at end of file diff --git a/teslamaxcompute/include/alibabacloud/teslamaxcompute/model/QueryCustomerSaleInfoRequest.h b/teslamaxcompute/include/alibabacloud/teslamaxcompute/model/QueryCustomerSaleInfoRequest.h index a02939680..3bcbde443 100644 --- a/teslamaxcompute/include/alibabacloud/teslamaxcompute/model/QueryCustomerSaleInfoRequest.h +++ b/teslamaxcompute/include/alibabacloud/teslamaxcompute/model/QueryCustomerSaleInfoRequest.h @@ -35,11 +35,11 @@ namespace AlibabaCloud QueryCustomerSaleInfoRequest(); ~QueryCustomerSaleInfoRequest(); - std::string getRegion()const; - void setRegion(const std::string& region); + std::string getRegionName()const; + void setRegionName(const std::string& regionName); private: - std::string region_; + std::string regionName_; }; } diff --git a/teslamaxcompute/src/model/QueryCustomerSaleInfoRequest.cc b/teslamaxcompute/src/model/QueryCustomerSaleInfoRequest.cc index 9f1ed968e..4655541dc 100644 --- a/teslamaxcompute/src/model/QueryCustomerSaleInfoRequest.cc +++ b/teslamaxcompute/src/model/QueryCustomerSaleInfoRequest.cc @@ -25,14 +25,14 @@ QueryCustomerSaleInfoRequest::QueryCustomerSaleInfoRequest() : QueryCustomerSaleInfoRequest::~QueryCustomerSaleInfoRequest() {} -std::string QueryCustomerSaleInfoRequest::getRegion()const +std::string QueryCustomerSaleInfoRequest::getRegionName()const { - return region_; + return regionName_; } -void QueryCustomerSaleInfoRequest::setRegion(const std::string& region) +void QueryCustomerSaleInfoRequest::setRegionName(const std::string& regionName) { - region_ = region; - setParameter("Region", region); + regionName_ = regionName; + setParameter("RegionName", regionName); }