|
|
@@ -25,26 +25,26 @@ GetAnalyzeCommodityDataRequest::GetAnalyzeCommodityDataRequest() :
|
|
|
GetAnalyzeCommodityDataRequest::~GetAnalyzeCommodityDataRequest()
|
|
|
{}
|
|
|
|
|
|
-long GetAnalyzeCommodityDataRequest::getStartUserCount()const
|
|
|
+long GetAnalyzeCommodityDataRequest::getStoreId()const
|
|
|
{
|
|
|
- return startUserCount_;
|
|
|
+ return storeId_;
|
|
|
}
|
|
|
|
|
|
-void GetAnalyzeCommodityDataRequest::setStartUserCount(long startUserCount)
|
|
|
+void GetAnalyzeCommodityDataRequest::setStoreId(long storeId)
|
|
|
{
|
|
|
- startUserCount_ = startUserCount;
|
|
|
- setCoreParameter("StartUserCount", std::to_string(startUserCount));
|
|
|
+ storeId_ = storeId;
|
|
|
+ setCoreParameter("StoreId", std::to_string(storeId));
|
|
|
}
|
|
|
|
|
|
-std::string GetAnalyzeCommodityDataRequest::getEndDate()const
|
|
|
+std::string GetAnalyzeCommodityDataRequest::getStartDate()const
|
|
|
{
|
|
|
- return endDate_;
|
|
|
+ return startDate_;
|
|
|
}
|
|
|
|
|
|
-void GetAnalyzeCommodityDataRequest::setEndDate(const std::string& endDate)
|
|
|
+void GetAnalyzeCommodityDataRequest::setStartDate(const std::string& startDate)
|
|
|
{
|
|
|
- endDate_ = endDate;
|
|
|
- setCoreParameter("EndDate", endDate);
|
|
|
+ startDate_ = startDate;
|
|
|
+ setCoreParameter("StartDate", startDate);
|
|
|
}
|
|
|
|
|
|
long GetAnalyzeCommodityDataRequest::getEndUserCount()const
|
|
|
@@ -69,58 +69,58 @@ void GetAnalyzeCommodityDataRequest::setPageSize(int pageSize)
|
|
|
setCoreParameter("PageSize", std::to_string(pageSize));
|
|
|
}
|
|
|
|
|
|
-long GetAnalyzeCommodityDataRequest::getMinSupportCount()const
|
|
|
+int GetAnalyzeCommodityDataRequest::getPageIndex()const
|
|
|
{
|
|
|
- return minSupportCount_;
|
|
|
+ return pageIndex_;
|
|
|
}
|
|
|
|
|
|
-void GetAnalyzeCommodityDataRequest::setMinSupportCount(long minSupportCount)
|
|
|
+void GetAnalyzeCommodityDataRequest::setPageIndex(int pageIndex)
|
|
|
{
|
|
|
- minSupportCount_ = minSupportCount;
|
|
|
- setCoreParameter("MinSupportCount", std::to_string(minSupportCount));
|
|
|
+ pageIndex_ = pageIndex;
|
|
|
+ setCoreParameter("PageIndex", std::to_string(pageIndex));
|
|
|
}
|
|
|
|
|
|
-int GetAnalyzeCommodityDataRequest::getPageIndex()const
|
|
|
+long GetAnalyzeCommodityDataRequest::getStayPeriod()const
|
|
|
{
|
|
|
- return pageIndex_;
|
|
|
+ return stayPeriod_;
|
|
|
}
|
|
|
|
|
|
-void GetAnalyzeCommodityDataRequest::setPageIndex(int pageIndex)
|
|
|
+void GetAnalyzeCommodityDataRequest::setStayPeriod(long stayPeriod)
|
|
|
{
|
|
|
- pageIndex_ = pageIndex;
|
|
|
- setCoreParameter("PageIndex", std::to_string(pageIndex));
|
|
|
+ stayPeriod_ = stayPeriod;
|
|
|
+ setCoreParameter("StayPeriod", std::to_string(stayPeriod));
|
|
|
}
|
|
|
|
|
|
-long GetAnalyzeCommodityDataRequest::getStoreId()const
|
|
|
+long GetAnalyzeCommodityDataRequest::getStartUserCount()const
|
|
|
{
|
|
|
- return storeId_;
|
|
|
+ return startUserCount_;
|
|
|
}
|
|
|
|
|
|
-void GetAnalyzeCommodityDataRequest::setStoreId(long storeId)
|
|
|
+void GetAnalyzeCommodityDataRequest::setStartUserCount(long startUserCount)
|
|
|
{
|
|
|
- storeId_ = storeId;
|
|
|
- setCoreParameter("StoreId", std::to_string(storeId));
|
|
|
+ startUserCount_ = startUserCount;
|
|
|
+ setCoreParameter("StartUserCount", std::to_string(startUserCount));
|
|
|
}
|
|
|
|
|
|
-std::string GetAnalyzeCommodityDataRequest::getStartDate()const
|
|
|
+long GetAnalyzeCommodityDataRequest::getMinSupportCount()const
|
|
|
{
|
|
|
- return startDate_;
|
|
|
+ return minSupportCount_;
|
|
|
}
|
|
|
|
|
|
-void GetAnalyzeCommodityDataRequest::setStartDate(const std::string& startDate)
|
|
|
+void GetAnalyzeCommodityDataRequest::setMinSupportCount(long minSupportCount)
|
|
|
{
|
|
|
- startDate_ = startDate;
|
|
|
- setCoreParameter("StartDate", startDate);
|
|
|
+ minSupportCount_ = minSupportCount;
|
|
|
+ setCoreParameter("MinSupportCount", std::to_string(minSupportCount));
|
|
|
}
|
|
|
|
|
|
-long GetAnalyzeCommodityDataRequest::getStayPeriod()const
|
|
|
+std::string GetAnalyzeCommodityDataRequest::getEndDate()const
|
|
|
{
|
|
|
- return stayPeriod_;
|
|
|
+ return endDate_;
|
|
|
}
|
|
|
|
|
|
-void GetAnalyzeCommodityDataRequest::setStayPeriod(long stayPeriod)
|
|
|
+void GetAnalyzeCommodityDataRequest::setEndDate(const std::string& endDate)
|
|
|
{
|
|
|
- stayPeriod_ = stayPeriod;
|
|
|
- setCoreParameter("StayPeriod", std::to_string(stayPeriod));
|
|
|
+ endDate_ = endDate;
|
|
|
+ setCoreParameter("EndDate", endDate);
|
|
|
}
|
|
|
|