├── .gitignore ├── .htaccess.example ├── .travis.yml ├── README.md ├── application ├── .htaccess ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── oauth_qq.php │ ├── oauth_weibo.php │ ├── profiler.php │ ├── routes.php │ ├── site_info.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── admin.php │ ├── cat.php │ ├── home.php │ └── login.php ├── core │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── language │ └── english │ │ └── index.html ├── logs │ └── index.html ├── models │ ├── m_cat.php │ ├── m_item.php │ ├── m_keyword.php │ ├── m_login.php │ ├── m_taobaoapi.php │ ├── oauth2.0 │ │ ├── curl.php │ │ ├── curl_cookie.txt │ │ └── curl_response.php │ └── taobaoapi │ │ ├── TopSdk.php │ │ ├── jushita │ │ └── JushitaTaobaoClient.php │ │ ├── lotusphp_runtime │ │ ├── Autoloader │ │ │ └── Autoloader.php │ │ ├── Cache │ │ │ ├── Adapter │ │ │ │ ├── CacheAdapter.php │ │ │ │ ├── CacheAdapterApc.php │ │ │ │ ├── CacheAdapterEAccelerator.php │ │ │ │ ├── CacheAdapterFile.php │ │ │ │ ├── CacheAdapterMemcache.php │ │ │ │ ├── CacheAdapterMemcached.php │ │ │ │ ├── CacheAdapterPhps.php │ │ │ │ └── CacheAdapterXcache.php │ │ │ ├── Cache.php │ │ │ ├── CacheAdapterFactory.php │ │ │ ├── CacheConfigBuilder.php │ │ │ ├── CacheConnectionManager.php │ │ │ ├── CacheHandle.php │ │ │ └── QueryEngine │ │ │ │ └── TableDataGateway │ │ │ │ └── CacheTableDataGateway.php │ │ ├── Captcha │ │ │ ├── Captcha.php │ │ │ ├── CaptchaImageEngine.php │ │ │ └── fonts │ │ │ │ ├── AntykwaBold.ttf │ │ │ │ ├── Candice.ttf │ │ │ │ ├── Ding-DongDaddyO.ttf │ │ │ │ ├── Duality.ttf │ │ │ │ ├── Jura.ttf │ │ │ │ ├── StayPuft.ttf │ │ │ │ ├── TimesNewRomanBold.ttf │ │ │ │ └── VeraSansBold.ttf │ │ ├── Config.php │ │ ├── ConfigExpression.php │ │ ├── Cookie │ │ │ └── Cookie.php │ │ ├── DB │ │ │ ├── Adapter │ │ │ │ ├── ConnectionAdapter │ │ │ │ │ ├── DbConnectionAdapter.php │ │ │ │ │ ├── DbConnectionAdapterMysql.php │ │ │ │ │ ├── DbConnectionAdapterMysqli.php │ │ │ │ │ ├── DbConnectionAdapterPdo.php │ │ │ │ │ ├── DbConnectionAdapterPgsql.php │ │ │ │ │ └── DbConnectionAdapterSqlite.php │ │ │ │ └── SqlAdapter │ │ │ │ │ ├── DbSqlAdapter.php │ │ │ │ │ ├── DbSqlAdapterMysql.php │ │ │ │ │ ├── DbSqlAdapterPgsql.php │ │ │ │ │ └── DbSqlAdapterSqlite.php │ │ │ ├── Db.php │ │ │ ├── DbAdapterFactory.php │ │ │ ├── DbConfigBuilder.php │ │ │ ├── DbConnectionManager.php │ │ │ ├── DbHandle.php │ │ │ ├── DbSqlExpression.php │ │ │ └── QueryEngine │ │ │ │ ├── SqlMap │ │ │ │ ├── AbstractDbSqlMapFilterObject.php │ │ │ │ ├── DbSqlMapClient.php │ │ │ │ └── DbSqlMapResultFactory.php │ │ │ │ └── TableDataGateway │ │ │ │ ├── DbTableDataGateway.php │ │ │ │ ├── DbTableRelation.php │ │ │ │ └── DbWhereCondition.php │ │ ├── Inflector │ │ │ └── Inflector.php │ │ ├── Logger │ │ │ └── Logger.php │ │ ├── Lotus.php │ │ ├── MVC │ │ │ ├── Action.php │ │ │ ├── Component.php │ │ │ ├── Context.php │ │ │ ├── Dispatcher.php │ │ │ ├── TemplateView.php │ │ │ └── View.php │ │ ├── ObjectUtil │ │ │ └── ObjectUtil.php │ │ ├── Pagination │ │ │ └── Pagination.php │ │ ├── RBAC │ │ │ └── Rbac.php │ │ ├── Router │ │ │ └── Router.php │ │ ├── Session │ │ │ ├── Session.php │ │ │ ├── SessionStore │ │ │ └── Store │ │ │ │ ├── SessionStoreFile.php │ │ │ │ ├── SessionStoreMemcache.php │ │ │ │ ├── SessionStoreMysql.php │ │ │ │ └── SessionStoreSqlite.php │ │ ├── Store.php │ │ ├── StoreFile.php │ │ ├── StoreMemory.php │ │ ├── Url │ │ │ └── Url.php │ │ ├── Validator │ │ │ ├── Validator.php │ │ │ └── ValidatorDtd.php │ │ ├── XML │ │ │ └── Xml.php │ │ └── shortcut.php │ │ └── top │ │ ├── RequestCheckUtil.php │ │ ├── TopClient.php │ │ └── request │ │ ├── AftersaleGetRequest.php │ │ ├── AlibabaLogisticsOrderCancelRequest.php │ │ ├── AlibabaLogisticsOrderChargeRequest.php │ │ ├── AlibabaLogisticsOrderConsignRequest.php │ │ ├── AlibabaLogisticsRouteQueryRequest.php │ │ ├── AlipayEbppBillAddRequest.php │ │ ├── AlipayEbppBillGetRequest.php │ │ ├── AlipayEbppBillPayRequest.php │ │ ├── AlipayEbppBillPayurlGetRequest.php │ │ ├── AlipayMicropayOrderConfirmpayurlGetRequest.php │ │ ├── AlipayMicropayOrderDirectPayRequest.php │ │ ├── AlipayMicropayOrderFreezeRequest.php │ │ ├── AlipayMicropayOrderFreezepayurlGetRequest.php │ │ ├── AlipayMicropayOrderGetRequest.php │ │ ├── AlipayMicropayOrderUnfreezeRequest.php │ │ ├── AlipayPointBudgetGetRequest.php │ │ ├── AlipayPointOrderAddRequest.php │ │ ├── AlipayPointOrderGetRequest.php │ │ ├── AlipaySystemOauthTokenRequest.php │ │ ├── AlipayTopatsUserAccountreportGetRequest.php │ │ ├── AlipayUserAccountFreezeGetRequest.php │ │ ├── AlipayUserAccountGetRequest.php │ │ ├── AlipayUserContractGetRequest.php │ │ ├── AlipayUserGetRequest.php │ │ ├── AlipayUserTradeSearchRequest.php │ │ ├── AppipGetRequest.php │ │ ├── AreasGetRequest.php │ │ ├── BillAccountsGetRequest.php │ │ ├── BillBillGetRequest.php │ │ ├── BillBillsGetRequest.php │ │ ├── BillBookBillGetRequest.php │ │ ├── BillBookBillsGetRequest.php │ │ ├── CaipiaoGoodsInfoGetRequest.php │ │ ├── CaipiaoGoodsInfoInputRequest.php │ │ ├── CaipiaoLotterySendRequest.php │ │ ├── CaipiaoLotterySendbynickRequest.php │ │ ├── CaipiaoLotterytypesGetRequest.php │ │ ├── CaipiaoPresentItemsGetRequest.php │ │ ├── CaipiaoPresentStatGetRequest.php │ │ ├── CaipiaoPresentWinItemsGetRequest.php │ │ ├── CaipiaoShopInfoInputRequest.php │ │ ├── CaipiaoSignstatusCheckRequest.php │ │ ├── CategoryrecommendItemsGetRequest.php │ │ ├── CometDiscardinfoGetRequest.php │ │ ├── DeliveryTemplateAddRequest.php │ │ ├── DeliveryTemplateDeleteRequest.php │ │ ├── DeliveryTemplateGetRequest.php │ │ ├── DeliveryTemplateUpdateRequest.php │ │ ├── DeliveryTemplatesGetRequest.php │ │ ├── FavoriteAddRequest.php │ │ ├── FavoriteSearchRequest.php │ │ ├── FeedbackAddRequest.php │ │ ├── FenxiaoCooperationAuditRequest.php │ │ ├── FenxiaoCooperationGetRequest.php │ │ ├── FenxiaoCooperationProductcatAddRequest.php │ │ ├── FenxiaoCooperationTerminateRequest.php │ │ ├── FenxiaoCooperationUpdateRequest.php │ │ ├── FenxiaoDiscountAddRequest.php │ │ ├── FenxiaoDiscountUpdateRequest.php │ │ ├── FenxiaoDiscountsGetRequest.php │ │ ├── FenxiaoDistributorArchivesGetRequest.php │ │ ├── FenxiaoDistributorItemsGetRequest.php │ │ ├── FenxiaoDistributorProcuctStaticGetRequest.php │ │ ├── FenxiaoDistributorProductsGetRequest.php │ │ ├── FenxiaoDistributorsGetRequest.php │ │ ├── FenxiaoGradeAddRequest.php │ │ ├── FenxiaoGradeDeleteRequest.php │ │ ├── FenxiaoGradeUpdateRequest.php │ │ ├── FenxiaoGradesGetRequest.php │ │ ├── FenxiaoLoginUserGetRequest.php │ │ ├── FenxiaoOrderCloseRequest.php │ │ ├── FenxiaoOrderConfirmPaidRequest.php │ │ ├── FenxiaoOrderCreateDealerRequest.php │ │ ├── FenxiaoOrderCustomfieldUpdateRequest.php │ │ ├── FenxiaoOrderMessageAddRequest.php │ │ ├── FenxiaoOrderPayRequest.php │ │ ├── FenxiaoOrderRemarkUpdateRequest.php │ │ ├── FenxiaoOrdersGetRequest.php │ │ ├── FenxiaoProductAddRequest.php │ │ ├── FenxiaoProductGradepriceGetRequest.php │ │ ├── FenxiaoProductGradepriceUpdateRequest.php │ │ ├── FenxiaoProductImageDeleteRequest.php │ │ ├── FenxiaoProductImageUploadRequest.php │ │ ├── FenxiaoProductMapAddRequest.php │ │ ├── FenxiaoProductMapDeleteRequest.php │ │ ├── FenxiaoProductPduUpdateRequest.php │ │ ├── FenxiaoProductSkuAddRequest.php │ │ ├── FenxiaoProductSkuDeleteRequest.php │ │ ├── FenxiaoProductSkuUpdateRequest.php │ │ ├── FenxiaoProductSkusGetRequest.php │ │ ├── FenxiaoProductUpdateRequest.php │ │ ├── FenxiaoProductcatAddRequest.php │ │ ├── FenxiaoProductcatDeleteRequest.php │ │ ├── FenxiaoProductcatUpdateRequest.php │ │ ├── FenxiaoProductcatsGetRequest.php │ │ ├── FenxiaoProductsGetRequest.php │ │ ├── FenxiaoRefundCreateRequest.php │ │ ├── FenxiaoRefundGetRequest.php │ │ ├── FenxiaoRefundMessageAddRequest.php │ │ ├── FenxiaoRefundMessageGetRequest.php │ │ ├── FenxiaoRefundUpdateRequest.php │ │ ├── FenxiaoRequisitionsGetRequest.php │ │ ├── FenxiaoTrademonitorGetRequest.php │ │ ├── FuwuSaleLinkGenRequest.php │ │ ├── HotelAddRequest.php │ │ ├── HotelCityGetRequest.php │ │ ├── HotelGetRequest.php │ │ ├── HotelImageUploadRequest.php │ │ ├── HotelMatchFeedbackRequest.php │ │ ├── HotelNameGetRequest.php │ │ ├── HotelOrderBookingFeedbackRequest.php │ │ ├── HotelOrderFaceCheckRequest.php │ │ ├── HotelOrderFaceDealRequest.php │ │ ├── HotelOrderGetRequest.php │ │ ├── HotelOrderPayFeedbackRequest.php │ │ ├── HotelOrderRefundFeedbackRequest.php │ │ ├── HotelOrdersSearchRequest.php │ │ ├── HotelRoomAddRequest.php │ │ ├── HotelRoomGetRequest.php │ │ ├── HotelRoomImgDeleteRequest.php │ │ ├── HotelRoomImgUploadRequest.php │ │ ├── HotelRoomQuotasQueryFeedbackRequest.php │ │ ├── HotelRoomUpdateRequest.php │ │ ├── HotelRoomsSearchRequest.php │ │ ├── HotelRoomsUpdateRequest.php │ │ ├── HotelSoldHotelsIncrementGetRequest.php │ │ ├── HotelSoldOrdersIncrementGetRequest.php │ │ ├── HotelSoldTypesIncrementGetRequest.php │ │ ├── HotelTypeAddRequest.php │ │ ├── HotelTypeNameGetRequest.php │ │ ├── HotelUpdateRequest.php │ │ ├── HotelsSearchRequest.php │ │ ├── HuabaoChannelGetRequest.php │ │ ├── HuabaoChannelsGetRequest.php │ │ ├── HuabaoPosterGetRequest.php │ │ ├── HuabaoPosterGoodsinfoGetRequest.php │ │ ├── HuabaoPostersGetRequest.php │ │ ├── HuabaoSpecialpostersGetRequest.php │ │ ├── IncrementAuthorizeMessageGetRequest.php │ │ ├── IncrementCustomerPermitRequest.php │ │ ├── IncrementCustomerStopRequest.php │ │ ├── IncrementCustomersGetRequest.php │ │ ├── IncrementItemsGetRequest.php │ │ ├── IncrementRefundsGetRequest.php │ │ ├── IncrementTradesGetRequest.php │ │ ├── InventoryAdjustExternalRequest.php │ │ ├── InventoryAdjustTradeRequest.php │ │ ├── InventoryAuthorizeGetRequest.php │ │ ├── InventoryAuthorizeGetallRequest.php │ │ ├── InventoryAuthorizeRemoveRequest.php │ │ ├── InventoryAuthorizeRemoveallRequest.php │ │ ├── InventoryAuthorizeSetRequest.php │ │ ├── InventoryInitialItemRequest.php │ │ ├── InventoryInitialRequest.php │ │ ├── InventoryOccupyApplyRequest.php │ │ ├── InventoryOccupyCancelRequest.php │ │ ├── InventoryQueryRequest.php │ │ ├── InventoryStoreManageRequest.php │ │ ├── InventoryStoreQueryRequest.php │ │ ├── ItemAddRequest.php │ │ ├── ItemAnchorGetRequest.php │ │ ├── ItemDeleteRequest.php │ │ ├── ItemGetRequest.php │ │ ├── ItemImgDeleteRequest.php │ │ ├── ItemImgUploadRequest.php │ │ ├── ItemJointImgRequest.php │ │ ├── ItemJointPropimgRequest.php │ │ ├── ItemPriceUpdateRequest.php │ │ ├── ItemPropimgDeleteRequest.php │ │ ├── ItemPropimgUploadRequest.php │ │ ├── ItemQuantityUpdateRequest.php │ │ ├── ItemRecommendAddRequest.php │ │ ├── ItemRecommendDeleteRequest.php │ │ ├── ItemSkuAddRequest.php │ │ ├── ItemSkuDeleteRequest.php │ │ ├── ItemSkuGetRequest.php │ │ ├── ItemSkuPriceUpdateRequest.php │ │ ├── ItemSkuUpdateRequest.php │ │ ├── ItemSkusGetRequest.php │ │ ├── ItemTemplatesGetRequest.php │ │ ├── ItemUpdateDelistingRequest.php │ │ ├── ItemUpdateListingRequest.php │ │ ├── ItemUpdateRequest.php │ │ ├── ItemcatsAuthorizeGetRequest.php │ │ ├── ItemcatsGetRequest.php │ │ ├── ItemcatsIncrementGetRequest.php │ │ ├── ItempropsGetRequest.php │ │ ├── ItempropvaluesGetRequest.php │ │ ├── ItemrecommendItemsGetRequest.php │ │ ├── ItemsCustomGetRequest.php │ │ ├── ItemsInventoryGetRequest.php │ │ ├── ItemsListGetRequest.php │ │ ├── ItemsOnsaleGetRequest.php │ │ ├── ItemsSearchRequest.php │ │ ├── JianghuFanCheckRequest.php │ │ ├── JianghuFanFollowRequest.php │ │ ├── JipiaoPolicyGetRequest.php │ │ ├── JipiaoPolicyProcessRequest.php │ │ ├── JipiaoPolicystatusUpdateRequest.php │ │ ├── KfcKeywordSearchRequest.php │ │ ├── LogisticsAddressAddRequest.php │ │ ├── LogisticsAddressModifyRequest.php │ │ ├── LogisticsAddressRemoveRequest.php │ │ ├── LogisticsAddressSearchRequest.php │ │ ├── LogisticsCompaniesGetRequest.php │ │ ├── LogisticsConsignResendRequest.php │ │ ├── LogisticsDummySendRequest.php │ │ ├── LogisticsOfflineSendRequest.php │ │ ├── LogisticsOnlineCancelRequest.php │ │ ├── LogisticsOnlineConfirmRequest.php │ │ ├── LogisticsOnlineSendRequest.php │ │ ├── LogisticsOrdersDetailGetRequest.php │ │ ├── LogisticsOrdersGetRequest.php │ │ ├── LogisticsOrderstorePushRequest.php │ │ ├── LogisticsOrdertracePushRequest.php │ │ ├── LogisticsPartnersGetRequest.php │ │ ├── LogisticsTraceSearchRequest.php │ │ ├── MarketingPromotionKfcRequest.php │ │ ├── MarketingPromotionsGetRequest.php │ │ ├── MarketingTagsGetRequest.php │ │ ├── PictureCategoryAddRequest.php │ │ ├── PictureCategoryGetRequest.php │ │ ├── PictureCategoryUpdateRequest.php │ │ ├── PictureDeleteRequest.php │ │ ├── PictureGetRequest.php │ │ ├── PictureIsreferencedGetRequest.php │ │ ├── PictureReplaceRequest.php │ │ ├── PictureUpdateRequest.php │ │ ├── PictureUploadRequest.php │ │ ├── PictureUserinfoGetRequest.php │ │ ├── PosterAppointedpostersGetRequest.php │ │ ├── PosterChannelGetRequest.php │ │ ├── PosterChannelsGetRequest.php │ │ ├── PosterPostauctionsGetRequest.php │ │ ├── PosterPosterdetailGetRequest.php │ │ ├── PosterPostersGetRequest.php │ │ ├── PosterPostersSearchRequest.php │ │ ├── ProductAddRequest.php │ │ ├── ProductGetRequest.php │ │ ├── ProductImgDeleteRequest.php │ │ ├── ProductImgUploadRequest.php │ │ ├── ProductPropimgDeleteRequest.php │ │ ├── ProductPropimgUploadRequest.php │ │ ├── ProductUpdateRequest.php │ │ ├── ProductsGetRequest.php │ │ ├── ProductsSearchRequest.php │ │ ├── PromotionActivityAddRequest.php │ │ ├── PromotionActivityCancelRequest.php │ │ ├── PromotionActivityDeleteRequest.php │ │ ├── PromotionActivityGetRequest.php │ │ ├── PromotionCouponAddRequest.php │ │ ├── PromotionCouponSendRequest.php │ │ ├── PromotionCouponTransferRequest.php │ │ ├── PromotionCoupondetailGetRequest.php │ │ ├── PromotionCouponsGetRequest.php │ │ ├── PromotionLimitdiscountDetailGetRequest.php │ │ ├── PromotionLimitdiscountGetRequest.php │ │ ├── PromotionMealGetRequest.php │ │ ├── RdsDbCreateRequest.php │ │ ├── RdsDbDeleteRequest.php │ │ ├── RdsDbGetRequest.php │ │ ├── RefundGetRequest.php │ │ ├── RefundMessageAddRequest.php │ │ ├── RefundMessagesGetRequest.php │ │ ├── RefundRefuseRequest.php │ │ ├── RefundsApplyGetRequest.php │ │ ├── RefundsReceiveGetRequest.php │ │ ├── ScitemAddRequest.php │ │ ├── ScitemGetRequest.php │ │ ├── ScitemMapAddRequest.php │ │ ├── ScitemMapDeleteRequest.php │ │ ├── ScitemMapQueryRequest.php │ │ ├── ScitemOutercodeGetRequest.php │ │ ├── ScitemQueryRequest.php │ │ ├── ScitemUpdateRequest.php │ │ ├── SellercatsListAddRequest.php │ │ ├── SellercatsListGetRequest.php │ │ ├── SellercatsListUpdateRequest.php │ │ ├── SellercenterRoleAddRequest.php │ │ ├── SellercenterRoleInfoGetRequest.php │ │ ├── SellercenterRolemembersGetRequest.php │ │ ├── SellercenterRolesGetRequest.php │ │ ├── SellercenterSubuserPermissionsRolesGetRequest.php │ │ ├── SellercenterSubusersGetRequest.php │ │ ├── SellercenterUserPermissionsGetRequest.php │ │ ├── ShopGetRequest.php │ │ ├── ShopRemainshowcaseGetRequest.php │ │ ├── ShopUpdateRequest.php │ │ ├── ShopcatsListGetRequest.php │ │ ├── ShoprecommendItemsGetRequest.php │ │ ├── ShoprecommendShopsGetRequest.php │ │ ├── SimbaAccountBalanceGetRequest.php │ │ ├── SimbaAdgroupAddRequest.php │ │ ├── SimbaAdgroupAdgroupcatmatchsGetRequest.php │ │ ├── SimbaAdgroupCampcatmatchsGetRequest.php │ │ ├── SimbaAdgroupCatmatchGetRequest.php │ │ ├── SimbaAdgroupCatmatchUpdateRequest.php │ │ ├── SimbaAdgroupCatmatchforecastGetRequest.php │ │ ├── SimbaAdgroupChangedcatmatchsGetRequest.php │ │ ├── SimbaAdgroupDeleteRequest.php │ │ ├── SimbaAdgroupDeletedcatmatchsGetRequest.php │ │ ├── SimbaAdgroupNonsearchpricesUpdateRequest.php │ │ ├── SimbaAdgroupNonsearchstatesUpdateRequest.php │ │ ├── SimbaAdgroupOnlineitemsvonGetRequest.php │ │ ├── SimbaAdgroupUpdateRequest.php │ │ ├── SimbaAdgroupidsChangedGetRequest.php │ │ ├── SimbaAdgroupidsDeletedGetRequest.php │ │ ├── SimbaAdgroupsChangedGetRequest.php │ │ ├── SimbaAdgroupsItemExistRequest.php │ │ ├── SimbaAdgroupsbyadgroupidsGetRequest.php │ │ ├── SimbaAdgroupsbycampaignidGetRequest.php │ │ ├── SimbaCampaignAddRequest.php │ │ ├── SimbaCampaignAreaGetRequest.php │ │ ├── SimbaCampaignAreaUpdateRequest.php │ │ ├── SimbaCampaignAreaoptionsGetRequest.php │ │ ├── SimbaCampaignBudgetGetRequest.php │ │ ├── SimbaCampaignBudgetUpdateRequest.php │ │ ├── SimbaCampaignChanneloptionsGetRequest.php │ │ ├── SimbaCampaignPlatformGetRequest.php │ │ ├── SimbaCampaignPlatformUpdateRequest.php │ │ ├── SimbaCampaignScheduleGetRequest.php │ │ ├── SimbaCampaignScheduleUpdateRequest.php │ │ ├── SimbaCampaignUpdateRequest.php │ │ ├── SimbaCampaignsGetRequest.php │ │ ├── SimbaCatmatchidsChangedGetRequest.php │ │ ├── SimbaCatmatchidsDeletedGetRequest.php │ │ ├── SimbaCreativeAddRequest.php │ │ ├── SimbaCreativeDeleteRequest.php │ │ ├── SimbaCreativeUpdateRequest.php │ │ ├── SimbaCreativeidsChangedGetRequest.php │ │ ├── SimbaCreativeidsDeletedGetRequest.php │ │ ├── SimbaCreativesChangedGetRequest.php │ │ ├── SimbaCreativesGetRequest.php │ │ ├── SimbaCreativesRecordGetRequest.php │ │ ├── SimbaCustomersAuthorizedGetRequest.php │ │ ├── SimbaInsightCatsGetRequest.php │ │ ├── SimbaInsightCatsanalysisGetRequest.php │ │ ├── SimbaInsightCatsbaseGetRequest.php │ │ ├── SimbaInsightCatsforecastGetRequest.php │ │ ├── SimbaInsightCatsrelatedwordGetRequest.php │ │ ├── SimbaInsightCatstopwordGetRequest.php │ │ ├── SimbaInsightToplevelcatsGetRequest.php │ │ ├── SimbaInsightWordsanalysisGetRequest.php │ │ ├── SimbaInsightWordsbaseGetRequest.php │ │ ├── SimbaInsightWordscatsGetRequest.php │ │ ├── SimbaKeywordKeywordforecastGetRequest.php │ │ ├── SimbaKeywordidsChangedGetRequest.php │ │ ├── SimbaKeywordidsDeletedGetRequest.php │ │ ├── SimbaKeywordsChangedGetRequest.php │ │ ├── SimbaKeywordsDeleteRequest.php │ │ ├── SimbaKeywordsPricevonSetRequest.php │ │ ├── SimbaKeywordsQscoreGetRequest.php │ │ ├── SimbaKeywordsRecommendGetRequest.php │ │ ├── SimbaKeywordsbyadgroupidGetRequest.php │ │ ├── SimbaKeywordsbykeywordidsGetRequest.php │ │ ├── SimbaKeywordscatQscoreGetRequest.php │ │ ├── SimbaKeywordsvonAddRequest.php │ │ ├── SimbaLoginAuthsignGetRequest.php │ │ ├── SimbaNonsearchAdgroupplacesAddRequest.php │ │ ├── SimbaNonsearchAdgroupplacesDeleteRequest.php │ │ ├── SimbaNonsearchAdgroupplacesGetRequest.php │ │ ├── SimbaNonsearchAdgroupplacesUpdateRequest.php │ │ ├── SimbaNonsearchAlldemographicsGetRequest.php │ │ ├── SimbaNonsearchAllplacesGetRequest.php │ │ ├── SimbaNonsearchDemographicsGetRequest.php │ │ ├── SimbaNonsearchDemographicsUpdateRequest.php │ │ ├── SimbaRptAdgroupbaseGetRequest.php │ │ ├── SimbaRptAdgroupcreativebaseGetRequest.php │ │ ├── SimbaRptAdgroupcreativeeffectGetRequest.php │ │ ├── SimbaRptAdgroupeffectGetRequest.php │ │ ├── SimbaRptAdgroupkeywordbaseGetRequest.php │ │ ├── SimbaRptAdgroupkeywordeffectGetRequest.php │ │ ├── SimbaRptAdgroupnonsearchbaseGetRequest.php │ │ ├── SimbaRptAdgroupnonsearcheffectGetRequest.php │ │ ├── SimbaRptCampadgroupbaseGetRequest.php │ │ ├── SimbaRptCampadgroupeffectGetRequest.php │ │ ├── SimbaRptCampaignbaseGetRequest.php │ │ ├── SimbaRptCampaigneffectGetRequest.php │ │ ├── SimbaRptCustbaseGetRequest.php │ │ ├── SimbaRptCusteffectGetRequest.php │ │ ├── SimbaRptDemographicbaseGetRequest.php │ │ ├── SimbaRptDemographiceffectGetRequest.php │ │ ├── SimbaToolsItemsTopGetRequest.php │ │ ├── SkusCustomGetRequest.php │ │ ├── SkusQuantityUpdateRequest.php │ │ ├── SpmeffectGetRequest.php │ │ ├── SubuserDepartmentAddRequest.php │ │ ├── SubuserDepartmentDeleteRequest.php │ │ ├── SubuserDepartmentUpdateRequest.php │ │ ├── SubuserDepartmentsGetRequest.php │ │ ├── SubuserDutyAddRequest.php │ │ ├── SubuserDutyDeleteRequest.php │ │ ├── SubuserDutyUpdateRequest.php │ │ ├── SubuserDutysGetRequest.php │ │ ├── SubuserEmployeeAddRequest.php │ │ ├── SubuserEmployeeUpdateRequest.php │ │ ├── SubuserFullinfoGetRequest.php │ │ ├── SubuserInfoUpdateRequest.php │ │ ├── SubusersGetRequest.php │ │ ├── TaobaokeCaturlGetRequest.php │ │ ├── TaobaokeItemsConvertRequest.php │ │ ├── TaobaokeItemsCouponGetRequest.php │ │ ├── TaobaokeItemsDetailGetRequest.php │ │ ├── TaobaokeItemsGetRequest.php │ │ ├── TaobaokeItemsRelateGetRequest.php │ │ ├── TaobaokeListurlGetRequest.php │ │ ├── TaobaokeReportGetRequest.php │ │ ├── TaobaokeShopsConvertRequest.php │ │ ├── TaobaokeShopsGetRequest.php │ │ ├── TaobaokeShopsRelateGetRequest.php │ │ ├── TaobaokeToolRelationRequest.php │ │ ├── TaobaokeWidgetItemsConvertRequest.php │ │ ├── TaobaokeWidgetShopsConvertRequest.php │ │ ├── TaobaokeWidgetUrlConvertRequest.php │ │ ├── TimeGetRequest.php │ │ ├── TmallBrandcatControlGetRequest.php │ │ ├── TmallBrandcatSalesproGetRequest.php │ │ ├── TmallItemsDiscountSearchRequest.php │ │ ├── TmallProductSpecAddRequest.php │ │ ├── TmallProductSpecGetRequest.php │ │ ├── TmallProductSpecPicUploadRequest.php │ │ ├── TmallProductSpecsGetRequest.php │ │ ├── TmallSelectedItemsSearchRequest.php │ │ ├── TmallTemaiItemsSearchRequest.php │ │ ├── TmallTemaiSubcatsSearchRequest.php │ │ ├── TopatsDeliverySendRequest.php │ │ ├── TopatsIncrementMessagesGetRequest.php │ │ ├── TopatsItemcatsGetRequest.php │ │ ├── TopatsItemsAllGetRequest.php │ │ ├── TopatsRefundsReceiveGetRequest.php │ │ ├── TopatsResultGetRequest.php │ │ ├── TopatsSimbaCampkeywordbaseGetRequest.php │ │ ├── TopatsSimbaCampkeywordeffectGetRequest.php │ │ ├── TopatsTaskDeleteRequest.php │ │ ├── TopatsTasksGetRequest.php │ │ ├── TopatsTradesFullinfoGetRequest.php │ │ ├── TopatsTradesSoldGetRequest.php │ │ ├── TradeAmountGetRequest.php │ │ ├── TradeCloseRequest.php │ │ ├── TradeConfirmfeeGetRequest.php │ │ ├── TradeFullinfoGetRequest.php │ │ ├── TradeGetRequest.php │ │ ├── TradeMemoAddRequest.php │ │ ├── TradeMemoUpdateRequest.php │ │ ├── TradeOrderskuUpdateRequest.php │ │ ├── TradePostageUpdateRequest.php │ │ ├── TradeReceivetimeDelayRequest.php │ │ ├── TradeShippingaddressUpdateRequest.php │ │ ├── TradeSnapshotGetRequest.php │ │ ├── TraderateAddRequest.php │ │ ├── TraderateExplainAddRequest.php │ │ ├── TraderateListAddRequest.php │ │ ├── TraderatesGetRequest.php │ │ ├── TradesSoldGetRequest.php │ │ ├── TradesSoldIncrementGetRequest.php │ │ ├── TradesSoldIncrementvGetRequest.php │ │ ├── TravelItemsareaGetRequest.php │ │ ├── TripJipiaoAgentItinerarySendRequest.php │ │ ├── TripJipiaoAgentOrderConfirmRequest.php │ │ ├── TripJipiaoAgentOrderFailRequest.php │ │ ├── TripJipiaoAgentOrderFindRequest.php │ │ ├── TripJipiaoAgentOrderGetRequest.php │ │ ├── TripJipiaoAgentOrderHkRequest.php │ │ ├── TripJipiaoAgentOrderSearchRequest.php │ │ ├── TripJipiaoAgentOrderSpecialConfirmRequest.php │ │ ├── TripJipiaoAgentOrderSuccessRequest.php │ │ ├── UdpItemGetRequest.php │ │ ├── UdpJuhuasuanGetRequest.php │ │ ├── UdpShopGetRequest.php │ │ ├── UmpActivitiesGetRequest.php │ │ ├── UmpActivitiesListGetRequest.php │ │ ├── UmpActivityAddRequest.php │ │ ├── UmpActivityDeleteRequest.php │ │ ├── UmpActivityGetRequest.php │ │ ├── UmpActivityUpdateRequest.php │ │ ├── UmpDetailAddRequest.php │ │ ├── UmpDetailDeleteRequest.php │ │ ├── UmpDetailGetRequest.php │ │ ├── UmpDetailListAddRequest.php │ │ ├── UmpDetailUpdateRequest.php │ │ ├── UmpDetailsGetRequest.php │ │ ├── UmpMbbGetbycodeRequest.php │ │ ├── UmpMbbGetbyidRequest.php │ │ ├── UmpMbbsGetRequest.php │ │ ├── UmpMbbsListGetRequest.php │ │ ├── UmpPromotionGetRequest.php │ │ ├── UmpRangeAddRequest.php │ │ ├── UmpRangeDeleteRequest.php │ │ ├── UmpRangeGetRequest.php │ │ ├── UmpToolAddRequest.php │ │ ├── UmpToolDeleteRequest.php │ │ ├── UmpToolGetRequest.php │ │ ├── UmpToolUpdateRequest.php │ │ ├── UmpToolsGetRequest.php │ │ ├── UserBuyerGetRequest.php │ │ ├── UserGetRequest.php │ │ ├── UserSellerGetRequest.php │ │ ├── UserrecommendItemsGetRequest.php │ │ ├── UsersGetRequest.php │ │ ├── VasOrderSearchRequest.php │ │ ├── VasSubscSearchRequest.php │ │ ├── VasSubscribeGetRequest.php │ │ ├── WangwangEserviceAvgwaittimeGetRequest.php │ │ ├── WangwangEserviceChatpeersGetRequest.php │ │ ├── WangwangEserviceEvalsGetRequest.php │ │ ├── WangwangEserviceEvaluationGetRequest.php │ │ ├── WangwangEserviceGroupmemberGetRequest.php │ │ ├── WangwangEserviceLoginlogsGetRequest.php │ │ ├── WangwangEserviceNoreplynumGetRequest.php │ │ ├── WangwangEserviceOnlinetimeGetRequest.php │ │ ├── WangwangEserviceReceivenumGetRequest.php │ │ ├── WangwangEserviceStreamweigthsGetRequest.php │ │ ├── WidgetAppapiruleCheckRequest.php │ │ ├── WidgetItempanelGetRequest.php │ │ ├── WidgetLoginstatusGetRequest.php │ │ ├── WlbInventoryDetailGetRequest.php │ │ ├── WlbInventorySyncRequest.php │ │ ├── WlbInventorylogQueryRequest.php │ │ ├── WlbItemAddRequest.php │ │ ├── WlbItemAuthorizationAddRequest.php │ │ ├── WlbItemAuthorizationDeleteRequest.php │ │ ├── WlbItemAuthorizationQueryRequest.php │ │ ├── WlbItemBatchQueryRequest.php │ │ ├── WlbItemCombinationCreateRequest.php │ │ ├── WlbItemCombinationDeleteRequest.php │ │ ├── WlbItemCombinationGetRequest.php │ │ ├── WlbItemConsignmentCreateRequest.php │ │ ├── WlbItemConsignmentDeleteRequest.php │ │ ├── WlbItemConsignmentPageGetRequest.php │ │ ├── WlbItemDeleteRequest.php │ │ ├── WlbItemGetRequest.php │ │ ├── WlbItemMapGetByExtentityRequest.php │ │ ├── WlbItemMapGetRequest.php │ │ ├── WlbItemQueryRequest.php │ │ ├── WlbItemSynchronizeDeleteRequest.php │ │ ├── WlbItemSynchronizeRequest.php │ │ ├── WlbItemUpdateRequest.php │ │ ├── WlbNotifyMessageConfirmRequest.php │ │ ├── WlbNotifyMessagePageGetRequest.php │ │ ├── WlbOrderCancelRequest.php │ │ ├── WlbOrderConsignRequest.php │ │ ├── WlbOrderCreateRequest.php │ │ ├── WlbOrderPageGetRequest.php │ │ ├── WlbOrderScheduleRuleAddRequest.php │ │ ├── WlbOrderScheduleRuleUpdateRequest.php │ │ ├── WlbOrderitemPageGetRequest.php │ │ ├── WlbOrderscheduleruleDeleteRequest.php │ │ ├── WlbOrderscheduleruleQueryRequest.php │ │ ├── WlbOrderstatusGetRequest.php │ │ ├── WlbOutInventoryChangeNotifyRequest.php │ │ ├── WlbReplenishStatisticsRequest.php │ │ ├── WlbSubscriptionQueryRequest.php │ │ ├── WlbTmsorderQueryRequest.php │ │ ├── WlbTradeorderGetRequest.php │ │ └── WlbWlborderGetRequest.php ├── third_party │ └── index.html └── views │ ├── admin │ ├── cat_view.php │ ├── catadd_view.php │ ├── include_header.php │ ├── include_login.php │ ├── index_view.php │ ├── items.php │ ├── items_view.php │ ├── keyword_view.php │ ├── search_view.php │ └── status │ │ ├── cats_view.php │ │ ├── items_view.php │ │ └── shops_view.php │ ├── home_view.php │ ├── login │ ├── install_view.php │ └── login_view.php │ └── search_view.php ├── assets ├── backend.css ├── bootstrap.css ├── bootstrap.min.css ├── img │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── icons.png │ ├── icons.psd │ ├── loading.gif │ └── logo.png ├── index.css └── js │ ├── bootstrap.min.js │ ├── html5shiv.js │ ├── jquery.js │ └── json.js ├── index.php ├── license.txt └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php └── index.html ├── database ├── DB.php ├── DB_active_rec.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ └── pdo_utility.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php └── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ └── Cache_memcached.php ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Log.php ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session.php ├── Sha1.php ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php ├── index.html └── javascript └── Jquery.php /.gitignore: -------------------------------------------------------------------------------- 1 | */config/development 2 | */logs/log-*.php 3 | */logs/!index.html 4 | */cache/* 5 | */cache/!index.html 6 | /images 7 | .idea 8 | .DS_Store 9 | *.sublime-project 10 | *.sublime-workspace 11 | -------------------------------------------------------------------------------- /.htaccess.example: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteBase /33pu/ 3 | # Hide the application and system directories by redirecting the request to index.php 4 | RewriteRule ^(application|system|\.svn) index.php/$1 [L] 5 | RewriteCond %{REQUEST_FILENAME} !-f 6 | RewriteCond %{REQUEST_FILENAME} !-d 7 | RewriteRule ^(.*)$ index.php/$1 [QSA,L] -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | branches: 2 | except: 3 | - 2.1-stable 4 | - master -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/oauth_qq.php: -------------------------------------------------------------------------------- 1 | load->view('login/login_view'); 16 | } 17 | 18 | 19 | /** 20 | * 初次安装 21 | * 22 | */ 23 | public function install(){ 24 | $this->load->model('M_login'); 25 | $data = $this->M_login->init(); 26 | $this->load->view('login/install_view',$data); 27 | } 28 | 29 | } 30 | 31 | /* End of file welcome.php */ 32 | /* Location: ./application/controllers/welcome.php */ -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

9 | 10 |
-------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/oauth2.0/curl_cookie.txt: -------------------------------------------------------------------------------- 1 | # Netscape HTTP Cookie File 2 | # http://curlm.haxx.se/rfc/cookie_spec.html 3 | # This file was generated by libcurl! Edit at your own risk. 4 | 5 | .baidu.com TRUE / FALSE 2147483647 BAIDUID F9FE63FEEDD97D479A93E5A4359ECF6C:FG=1 6 | -------------------------------------------------------------------------------- /application/models/taobaoapi/TopSdk.php: -------------------------------------------------------------------------------- 1 | option["autoload_dir"] = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'top'; 41 | $lotus->devMode = TOP_SDK_DEV_MODE; 42 | $lotus->defaultStoreDir = TOP_SDK_WORK_DIR; 43 | $lotus->init(); -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Cache/Adapter/CacheAdapter.php: -------------------------------------------------------------------------------- 1 | getRealKey($tableName, $key), $value, $ttl); 12 | } 13 | 14 | public function del($key, $tableName, $connectionResource) 15 | { 16 | return apc_delete($this->getRealKey($tableName, $key)); 17 | } 18 | 19 | public function get($key, $tableName, $connectionResource) 20 | { 21 | return apc_fetch($this->getRealKey($tableName, $key)); 22 | } 23 | 24 | public function update($key, $value, $ttl = 0, $tableName, $connectionResource) 25 | { 26 | if ($this->del($key, $tableName, $connectionResource)) 27 | { 28 | return $this->add($key, $value, $ttl, $tableName, $connectionResource); 29 | } 30 | else 31 | { 32 | return false; 33 | } 34 | } 35 | 36 | protected function getRealKey($tableName, $key) 37 | { 38 | return $tableName . "-" . $key; 39 | } 40 | } -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Cache/Adapter/CacheAdapterEAccelerator.php: -------------------------------------------------------------------------------- 1 | getRealKey($tableName, $key), $value, $ttl); 13 | } 14 | 15 | public function del($key, $tableName, $connectionResource) 16 | { 17 | return eaccelerator_rm($this->getRealKey($tableName, $key)); 18 | } 19 | 20 | public function get($key, $tableName, $connectionResource) 21 | { 22 | $value = eaccelerator_get($this->getRealKey($tableName, $key)); 23 | if (!empty($value)) 24 | { 25 | return unserialize($value); 26 | } 27 | else 28 | { 29 | return false; 30 | } 31 | } 32 | 33 | public function update($key, $value, $ttl = 0, $tableName, $connectionResource) 34 | { 35 | if ($this->del($key, $tableName, $connectionResource)) 36 | { 37 | return $this->add($key, $value, $ttl, $tableName, $connectionResource); 38 | } 39 | else 40 | { 41 | return false; 42 | } 43 | } 44 | 45 | protected function getRealKey($tableName, $key) 46 | { 47 | return $tableName . "-" . $key; 48 | } 49 | } -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Cache/Adapter/CacheAdapterMemcache.php: -------------------------------------------------------------------------------- 1 | add($this->getRealKey($tableName, $key), $value, false, $ttl); 12 | } 13 | 14 | public function del($key, $tableName, $connectionResource) 15 | { 16 | return $connectionResource->delete($this->getRealKey($tableName, $key), 0); 17 | } 18 | 19 | public function get($key, $tableName, $connectionResource) 20 | { 21 | return $connectionResource->get($this->getRealKey($tableName, $key)); 22 | } 23 | 24 | public function update($key, $value, $ttl = 0, $tableName, $connectionResource) 25 | { 26 | return $connectionResource->replace($this->getRealKey($tableName, $key), $value, false, $ttl); 27 | } 28 | 29 | protected function getRealKey($tableName, $key) 30 | { 31 | return $tableName . "-" . $key; 32 | } 33 | } -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Cache/Adapter/CacheAdapterMemcached.php: -------------------------------------------------------------------------------- 1 | addServer($hostConf["host"], $hostConf["port"]); 8 | return $connectionResource; 9 | } 10 | 11 | public function add($key, $value, $ttl=0, $tableName, $connectionResource) 12 | { 13 | return $connectionResource->add($this->getRealKey($tableName, $key), $value, $ttl); 14 | } 15 | 16 | public function del($key, $tableName, $connectionResource) 17 | { 18 | return $connectionResource->delete($this->getRealKey($tableName, $key)); 19 | } 20 | 21 | public function get($key, $tableName, $connectionResource) 22 | { 23 | return $connectionResource->get($this->getRealKey($tableName, $key)); 24 | } 25 | 26 | public function update($key, $value, $ttl = 0, $tableName, $connectionResource) 27 | { 28 | return $connectionResource->replace($this->getRealKey($tableName, $key), $value, $ttl); 29 | } 30 | 31 | protected function getRealKey($tableName, $key) 32 | { 33 | return $tableName . "-" . $key; 34 | } 35 | } -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Cache/Adapter/CacheAdapterXcache.php: -------------------------------------------------------------------------------- 1 | getRealKey($tableName, $key), $value, $ttl); 12 | } 13 | 14 | public function del($key, $tableName, $connectionResource) 15 | { 16 | return xcache_unset($this->getRealKey($tableName, $key)); 17 | } 18 | 19 | public function get($key, $tableName, $connectionResource) 20 | { 21 | $key = $this->getRealKey($tableName, $key); 22 | if (xcache_isset($key)) 23 | { 24 | return xcache_get($key); 25 | } 26 | return false; 27 | } 28 | 29 | public function update($key, $value, $ttl = 0, $tableName, $connectionResource) 30 | { 31 | $key = $this->getRealKey($tableName, $key); 32 | if (xcache_isset($key)) 33 | { 34 | return xcache_set($key, $value, $ttl); 35 | } 36 | return false; 37 | } 38 | 39 | protected function getRealKey($tableName, $key) 40 | { 41 | return $tableName . "-" . $key; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Cache/CacheAdapterFactory.php: -------------------------------------------------------------------------------- 1 | ch->add($key, $value, $ttl, $this->tableName); 11 | } 12 | 13 | public function del($key) 14 | { 15 | return $this->ch->del($key, $this->tableName); 16 | } 17 | 18 | public function get($key) 19 | { 20 | return $this->ch->get($key, $this->tableName); 21 | } 22 | 23 | public function update($key, $value, $ttl = 0) 24 | { 25 | return $this->ch->update($key, $value, $ttl, $this->tableName); 26 | } 27 | } -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/AntykwaBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/AntykwaBold.ttf -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/Candice.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/Candice.ttf -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/Ding-DongDaddyO.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/Ding-DongDaddyO.ttf -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/Duality.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/Duality.ttf -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/Jura.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/Jura.ttf -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/StayPuft.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/StayPuft.ttf -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/TimesNewRomanBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/TimesNewRomanBold.ttf -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/VeraSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/application/models/taobaoapi/lotusphp_runtime/Captcha/fonts/VeraSansBold.ttf -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/ConfigExpression.php: -------------------------------------------------------------------------------- 1 | _expression = (string) $string; 10 | $this->autoRetrived = $autoRetrived; 11 | } 12 | 13 | public function __toString() 14 | { 15 | return $this->_expression; 16 | } 17 | } -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/DB/Adapter/ConnectionAdapter/DbConnectionAdapter.php: -------------------------------------------------------------------------------- 1 | query($sql); 12 | return $connResource->affected_rows; 13 | } 14 | 15 | public function query($sql, $connResource) 16 | { 17 | $rows = array(); 18 | $result = $connResource->query($sql); 19 | while($row = $result->fetch_assoc()) 20 | { 21 | $rows[] = $row; 22 | } 23 | return $rows; 24 | } 25 | 26 | public function lastInsertId($connResource) 27 | { 28 | return $connResource->insert_id; 29 | } 30 | 31 | public function escape($sql, $connResource) 32 | { 33 | return mysqli_real_escape_string($connResource, $sql); 34 | } 35 | } -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/DB/Adapter/SqlAdapter/DbSqlAdapter.php: -------------------------------------------------------------------------------- 1 | _expression = (string) $string; 9 | } 10 | 11 | public function __toString() 12 | { 13 | return (string) $this->_expression; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/DB/QueryEngine/SqlMap/AbstractDbSqlMapFilterObject.php: -------------------------------------------------------------------------------- 1 | configHandle->get($this->dbh->group . "." . $mapId); 10 | $forceUseMaster = isset($sqlMap["force_use_master"]) ? $sqlMap["force_use_master"] : false; 11 | return $this->dbh->query($sqlMap["sql"], $bind, $forceUseMaster); 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/DB/QueryEngine/SqlMap/DbSqlMapResultFactory.php: -------------------------------------------------------------------------------- 1 | "_"); 5 | 6 | public function camelize($uncamelized_words) 7 | { 8 | $uncamelized_words = $this->conf["separator"] . str_replace($this->conf["separator"] , " ", strtolower($uncamelized_words)); 9 | return ltrim(str_replace(" ", "", ucwords($uncamelized_words)), $this->conf["separator"] ); 10 | } 11 | 12 | public function uncamelize($camelCaps) 13 | { 14 | return strtolower(preg_replace('/([a-z])([A-Z])/', "$1" . $this->conf["separator"] . "$2", $camelCaps)); 15 | } 16 | } -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Logger/Logger.php: -------------------------------------------------------------------------------- 1 | "\t", 6 | "log_file" => "" 7 | ); 8 | 9 | private $fileHandle; 10 | 11 | protected function getFileHandle() 12 | { 13 | if (null === $this->fileHandle) 14 | { 15 | if (empty($this->conf["log_file"])) 16 | { 17 | trigger_error("no log file spcified."); 18 | } 19 | $logDir = dirname($this->conf["log_file"]); 20 | if (!is_dir($logDir)) 21 | { 22 | mkdir($logDir, 0777, true); 23 | } 24 | $this->fileHandle = fopen($this->conf["log_file"], "a"); 25 | } 26 | return $this->fileHandle; 27 | } 28 | 29 | public function log($logData) 30 | { 31 | if ("" == $logData || array() == $logData) 32 | { 33 | return false; 34 | } 35 | if (is_array($logData)) 36 | { 37 | $logData = implode($this->conf["separator"], $logData); 38 | } 39 | $logData = $logData. "\n"; 40 | fwrite($this->getFileHandle(), $logData); 41 | } 42 | } -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/MVC/View.php: -------------------------------------------------------------------------------- 1 | layout)) 18 | { 19 | include($this->layoutDir . $this->layout . '.php'); 20 | } 21 | else 22 | { 23 | include($this->templateDir . $this->template . '.php'); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/ObjectUtil/ObjectUtil.php: -------------------------------------------------------------------------------- 1 | init(); 24 | } 25 | self::$instances[$key] = $newInstance; 26 | return $newInstance; 27 | } 28 | else 29 | { 30 | return false; 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Session/SessionStore: -------------------------------------------------------------------------------- 1 | stack[$key])) 9 | { 10 | return false; 11 | } 12 | else 13 | { 14 | $this->stack[$key] = $value; 15 | return true; 16 | } 17 | } 18 | 19 | public function del($key) 20 | { 21 | if (isset($this->stack[$key])) 22 | { 23 | unset($this->stack[$key]); 24 | return true; 25 | } 26 | else 27 | { 28 | return false; 29 | } 30 | } 31 | 32 | public function get($key) 33 | { 34 | return isset($this->stack[$key]) ? $this->stack[$key] : false; 35 | } 36 | 37 | /** 38 | * key不存在返回false 39 | * 40 | * @return bool 41 | */ 42 | public function update($key, $value) 43 | { 44 | if (!isset($this->stack[$key])) 45 | { 46 | return false; 47 | } 48 | else 49 | { 50 | $this->stack[$key] = $value; 51 | return true; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/Validator/ValidatorDtd.php: -------------------------------------------------------------------------------- 1 | label = $label; 11 | foreach($rules as $key => $rule) 12 | { 13 | $this->rules[$key] = $rule; 14 | } 15 | if ($messages) 16 | { 17 | foreach($messages as $key => $message) 18 | { 19 | $this->messages[$key] = $message; 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /application/models/taobaoapi/lotusphp_runtime/shortcut.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/AlibabaLogisticsOrderCancelRequest.php: -------------------------------------------------------------------------------- 1 | orderId = $orderId; 25 | $this->apiParas["order_id"] = $orderId; 26 | } 27 | 28 | public function getOrderId() 29 | { 30 | return $this->orderId; 31 | } 32 | 33 | public function setReason($reason) 34 | { 35 | $this->reason = $reason; 36 | $this->apiParas["reason"] = $reason; 37 | } 38 | 39 | public function getReason() 40 | { 41 | return $this->reason; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "alibaba.logistics.order.cancel"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->orderId,"orderId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/AlipayPointBudgetGetRequest.php: -------------------------------------------------------------------------------- 1 | authToken = $authToken; 20 | $this->apiParas["auth_token"] = $authToken; 21 | } 22 | 23 | public function getAuthToken() 24 | { 25 | return $this->authToken; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "alipay.point.budget.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/AlipayUserAccountFreezeGetRequest.php: -------------------------------------------------------------------------------- 1 | freezeType = $freezeType; 28 | $this->apiParas["freeze_type"] = $freezeType; 29 | } 30 | 31 | public function getFreezeType() 32 | { 33 | return $this->freezeType; 34 | } 35 | 36 | public function getApiMethodName() 37 | { 38 | return "alipay.user.account.freeze.get"; 39 | } 40 | 41 | public function getApiParas() 42 | { 43 | return $this->apiParas; 44 | } 45 | 46 | public function check() 47 | { 48 | 49 | } 50 | 51 | public function putOtherTextParam($key, $value) { 52 | $this->apiParas[$key] = $value; 53 | $this->$key = $value; 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/AlipayUserAccountGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/AlipayUserContractGetRequest.php: -------------------------------------------------------------------------------- 1 | subscriberUserId = $subscriberUserId; 20 | $this->apiParas["subscriber_user_id"] = $subscriberUserId; 21 | } 22 | 23 | public function getSubscriberUserId() 24 | { 25 | return $this->subscriberUserId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "alipay.user.contract.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/AlipayUserGetRequest.php: -------------------------------------------------------------------------------- 1 | authToken = $authToken; 25 | $this->apiParas["auth_token"] = $authToken; 26 | } 27 | 28 | public function getAuthToken() 29 | { 30 | return $this->authToken; 31 | } 32 | 33 | public function setFields($fields) 34 | { 35 | $this->fields = $fields; 36 | $this->apiParas["fields"] = $fields; 37 | } 38 | 39 | public function getFields() 40 | { 41 | return $this->fields; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "alipay.user.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | } 58 | 59 | public function putOtherTextParam($key, $value) { 60 | $this->apiParas[$key] = $value; 61 | $this->$key = $value; 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/AppipGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/AreasGetRequest.php: -------------------------------------------------------------------------------- 1 | fields = $fields; 20 | $this->apiParas["fields"] = $fields; 21 | } 22 | 23 | public function getFields() 24 | { 25 | return $this->fields; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.areas.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->fields,"fields"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/BillAccountsGetRequest.php: -------------------------------------------------------------------------------- 1 | aids = $aids; 25 | $this->apiParas["aids"] = $aids; 26 | } 27 | 28 | public function getAids() 29 | { 30 | return $this->aids; 31 | } 32 | 33 | public function setFields($fields) 34 | { 35 | $this->fields = $fields; 36 | $this->apiParas["fields"] = $fields; 37 | } 38 | 39 | public function getFields() 40 | { 41 | return $this->fields; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.bill.accounts.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkMaxListSize($this->aids,200,"aids"); 58 | RequestCheckUtil::checkNotNull($this->fields,"fields"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/BillBillGetRequest.php: -------------------------------------------------------------------------------- 1 | bid = $bid; 25 | $this->apiParas["bid"] = $bid; 26 | } 27 | 28 | public function getBid() 29 | { 30 | return $this->bid; 31 | } 32 | 33 | public function setFields($fields) 34 | { 35 | $this->fields = $fields; 36 | $this->apiParas["fields"] = $fields; 37 | } 38 | 39 | public function getFields() 40 | { 41 | return $this->fields; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.bill.bill.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->bid,"bid"); 58 | RequestCheckUtil::checkNotNull($this->fields,"fields"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/BillBookBillGetRequest.php: -------------------------------------------------------------------------------- 1 | bid = $bid; 25 | $this->apiParas["bid"] = $bid; 26 | } 27 | 28 | public function getBid() 29 | { 30 | return $this->bid; 31 | } 32 | 33 | public function setFields($fields) 34 | { 35 | $this->fields = $fields; 36 | $this->apiParas["fields"] = $fields; 37 | } 38 | 39 | public function getFields() 40 | { 41 | return $this->fields; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.bill.book.bill.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->bid,"bid"); 58 | RequestCheckUtil::checkNotNull($this->fields,"fields"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/CaipiaoGoodsInfoGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/CaipiaoLotterytypesGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/CaipiaoPresentStatGetRequest.php: -------------------------------------------------------------------------------- 1 | days = $days; 20 | $this->apiParas["days"] = $days; 21 | } 22 | 23 | public function getDays() 24 | { 25 | return $this->days; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.caipiao.present.stat.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/CaipiaoPresentWinItemsGetRequest.php: -------------------------------------------------------------------------------- 1 | num = $num; 20 | $this->apiParas["num"] = $num; 21 | } 22 | 23 | public function getNum() 24 | { 25 | return $this->num; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.caipiao.present.win.items.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/CaipiaoSignstatusCheckRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/DeliveryTemplateDeleteRequest.php: -------------------------------------------------------------------------------- 1 | templateId = $templateId; 20 | $this->apiParas["template_id"] = $templateId; 21 | } 22 | 23 | public function getTemplateId() 24 | { 25 | return $this->templateId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.delivery.template.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->templateId,"templateId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FeedbackAddRequest.php: -------------------------------------------------------------------------------- 1 | info = $info; 25 | $this->apiParas["info"] = $info; 26 | } 27 | 28 | public function getInfo() 29 | { 30 | return $this->info; 31 | } 32 | 33 | public function setType($type) 34 | { 35 | $this->type = $type; 36 | $this->apiParas["type"] = $type; 37 | } 38 | 39 | public function getType() 40 | { 41 | return $this->type; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.feedback.add"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->info,"info"); 58 | RequestCheckUtil::checkNotNull($this->type,"type"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FenxiaoDiscountsGetRequest.php: -------------------------------------------------------------------------------- 1 | discountId = $discountId; 25 | $this->apiParas["discount_id"] = $discountId; 26 | } 27 | 28 | public function getDiscountId() 29 | { 30 | return $this->discountId; 31 | } 32 | 33 | public function setExtFields($extFields) 34 | { 35 | $this->extFields = $extFields; 36 | $this->apiParas["ext_fields"] = $extFields; 37 | } 38 | 39 | public function getExtFields() 40 | { 41 | return $this->extFields; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.fenxiao.discounts.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | } 58 | 59 | public function putOtherTextParam($key, $value) { 60 | $this->apiParas[$key] = $value; 61 | $this->$key = $value; 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FenxiaoDistributorArchivesGetRequest.php: -------------------------------------------------------------------------------- 1 | distributorUserNick = $distributorUserNick; 20 | $this->apiParas["distributor_user_nick"] = $distributorUserNick; 21 | } 22 | 23 | public function getDistributorUserNick() 24 | { 25 | return $this->distributorUserNick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.fenxiao.distributor.archives.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->distributorUserNick,"distributorUserNick"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FenxiaoDistributorsGetRequest.php: -------------------------------------------------------------------------------- 1 | nicks = $nicks; 20 | $this->apiParas["nicks"] = $nicks; 21 | } 22 | 23 | public function getNicks() 24 | { 25 | return $this->nicks; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.fenxiao.distributors.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->nicks,"nicks"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FenxiaoGradeAddRequest.php: -------------------------------------------------------------------------------- 1 | name = $name; 20 | $this->apiParas["name"] = $name; 21 | } 22 | 23 | public function getName() 24 | { 25 | return $this->name; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.fenxiao.grade.add"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->name,"name"); 42 | RequestCheckUtil::checkMaxLength($this->name,20,"name"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FenxiaoGradeDeleteRequest.php: -------------------------------------------------------------------------------- 1 | gradeId = $gradeId; 20 | $this->apiParas["grade_id"] = $gradeId; 21 | } 22 | 23 | public function getGradeId() 24 | { 25 | return $this->gradeId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.fenxiao.grade.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->gradeId,"gradeId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FenxiaoGradesGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FenxiaoLoginUserGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FenxiaoProductSkusGetRequest.php: -------------------------------------------------------------------------------- 1 | productId = $productId; 20 | $this->apiParas["product_id"] = $productId; 21 | } 22 | 23 | public function getProductId() 24 | { 25 | return $this->productId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.fenxiao.product.skus.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->productId,"productId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FenxiaoProductcatDeleteRequest.php: -------------------------------------------------------------------------------- 1 | productLineId = $productLineId; 20 | $this->apiParas["product_line_id"] = $productLineId; 21 | } 22 | 23 | public function getProductLineId() 24 | { 25 | return $this->productLineId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.fenxiao.productcat.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->productLineId,"productLineId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FenxiaoProductcatsGetRequest.php: -------------------------------------------------------------------------------- 1 | fields = $fields; 20 | $this->apiParas["fields"] = $fields; 21 | } 22 | 23 | public function getFields() 24 | { 25 | return $this->fields; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.fenxiao.productcats.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/FuwuSaleLinkGenRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 25 | $this->apiParas["nick"] = $nick; 26 | } 27 | 28 | public function getNick() 29 | { 30 | return $this->nick; 31 | } 32 | 33 | public function setParamStr($paramStr) 34 | { 35 | $this->paramStr = $paramStr; 36 | $this->apiParas["param_str"] = $paramStr; 37 | } 38 | 39 | public function getParamStr() 40 | { 41 | return $this->paramStr; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.fuwu.sale.link.gen"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->paramStr,"paramStr"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/HotelCityGetRequest.php: -------------------------------------------------------------------------------- 1 | country = $country; 20 | $this->apiParas["country"] = $country; 21 | } 22 | 23 | public function getCountry() 24 | { 25 | return $this->country; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.hotel.city.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->country,"country"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/HotelImageUploadRequest.php: -------------------------------------------------------------------------------- 1 | hid = $hid; 25 | $this->apiParas["hid"] = $hid; 26 | } 27 | 28 | public function getHid() 29 | { 30 | return $this->hid; 31 | } 32 | 33 | public function setPic($pic) 34 | { 35 | $this->pic = $pic; 36 | $this->apiParas["pic"] = $pic; 37 | } 38 | 39 | public function getPic() 40 | { 41 | return $this->pic; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.hotel.image.upload"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->hid,"hid"); 58 | RequestCheckUtil::checkNotNull($this->pic,"pic"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/HuabaoChannelGetRequest.php: -------------------------------------------------------------------------------- 1 | channelId = $channelId; 20 | $this->apiParas["channel_id"] = $channelId; 21 | } 22 | 23 | public function getChannelId() 24 | { 25 | return $this->channelId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.huabao.channel.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->channelId,"channelId"); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/HuabaoChannelsGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/HuabaoPosterGetRequest.php: -------------------------------------------------------------------------------- 1 | posterId = $posterId; 20 | $this->apiParas["poster_id"] = $posterId; 21 | } 22 | 23 | public function getPosterId() 24 | { 25 | return $this->posterId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.huabao.poster.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->posterId,"posterId"); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/HuabaoPosterGoodsinfoGetRequest.php: -------------------------------------------------------------------------------- 1 | posterId = $posterId; 20 | $this->apiParas["poster_id"] = $posterId; 21 | } 22 | 23 | public function getPosterId() 24 | { 25 | return $this->posterId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.huabao.poster.goodsinfo.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->posterId,"posterId"); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/InventoryStoreQueryRequest.php: -------------------------------------------------------------------------------- 1 | storeCode = $storeCode; 20 | $this->apiParas["store_code"] = $storeCode; 21 | } 22 | 23 | public function getStoreCode() 24 | { 25 | return $this->storeCode; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.inventory.store.query"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ItemDeleteRequest.php: -------------------------------------------------------------------------------- 1 | numIid = $numIid; 20 | $this->apiParas["num_iid"] = $numIid; 21 | } 22 | 23 | public function getNumIid() 24 | { 25 | return $this->numIid; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.item.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->numIid,"numIid"); 42 | RequestCheckUtil::checkMinValue($this->numIid,0,"numIid"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ItemImgDeleteRequest.php: -------------------------------------------------------------------------------- 1 | id = $id; 25 | $this->apiParas["id"] = $id; 26 | } 27 | 28 | public function getId() 29 | { 30 | return $this->id; 31 | } 32 | 33 | public function setNumIid($numIid) 34 | { 35 | $this->numIid = $numIid; 36 | $this->apiParas["num_iid"] = $numIid; 37 | } 38 | 39 | public function getNumIid() 40 | { 41 | return $this->numIid; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.item.img.delete"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->id,"id"); 58 | RequestCheckUtil::checkNotNull($this->numIid,"numIid"); 59 | RequestCheckUtil::checkMinValue($this->numIid,0,"numIid"); 60 | } 61 | 62 | public function putOtherTextParam($key, $value) { 63 | $this->apiParas[$key] = $value; 64 | $this->$key = $value; 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ItemRecommendAddRequest.php: -------------------------------------------------------------------------------- 1 | numIid = $numIid; 20 | $this->apiParas["num_iid"] = $numIid; 21 | } 22 | 23 | public function getNumIid() 24 | { 25 | return $this->numIid; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.item.recommend.add"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->numIid,"numIid"); 42 | RequestCheckUtil::checkMinValue($this->numIid,0,"numIid"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ItemRecommendDeleteRequest.php: -------------------------------------------------------------------------------- 1 | numIid = $numIid; 20 | $this->apiParas["num_iid"] = $numIid; 21 | } 22 | 23 | public function getNumIid() 24 | { 25 | return $this->numIid; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.item.recommend.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->numIid,"numIid"); 42 | RequestCheckUtil::checkMinValue($this->numIid,0,"numIid"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ItemTemplatesGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ItemUpdateDelistingRequest.php: -------------------------------------------------------------------------------- 1 | numIid = $numIid; 20 | $this->apiParas["num_iid"] = $numIid; 21 | } 22 | 23 | public function getNumIid() 24 | { 25 | return $this->numIid; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.item.update.delisting"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->numIid,"numIid"); 42 | RequestCheckUtil::checkMinValue($this->numIid,0,"numIid"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ItemcatsAuthorizeGetRequest.php: -------------------------------------------------------------------------------- 1 | fields = $fields; 28 | $this->apiParas["fields"] = $fields; 29 | } 30 | 31 | public function getFields() 32 | { 33 | return $this->fields; 34 | } 35 | 36 | public function getApiMethodName() 37 | { 38 | return "taobao.itemcats.authorize.get"; 39 | } 40 | 41 | public function getApiParas() 42 | { 43 | return $this->apiParas; 44 | } 45 | 46 | public function check() 47 | { 48 | 49 | RequestCheckUtil::checkNotNull($this->fields,"fields"); 50 | } 51 | 52 | public function putOtherTextParam($key, $value) { 53 | $this->apiParas[$key] = $value; 54 | $this->$key = $value; 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/JianghuFanCheckRequest.php: -------------------------------------------------------------------------------- 1 | followerId = $followerId; 25 | $this->apiParas["follower_id"] = $followerId; 26 | } 27 | 28 | public function getFollowerId() 29 | { 30 | return $this->followerId; 31 | } 32 | 33 | public function setUserId($userId) 34 | { 35 | $this->userId = $userId; 36 | $this->apiParas["user_id"] = $userId; 37 | } 38 | 39 | public function getUserId() 40 | { 41 | return $this->userId; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.jianghu.fan.check"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->followerId,"followerId"); 58 | RequestCheckUtil::checkNotNull($this->userId,"userId"); 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/JianghuFanFollowRequest.php: -------------------------------------------------------------------------------- 1 | shopOwnerId = $shopOwnerId; 20 | $this->apiParas["shop_owner_id"] = $shopOwnerId; 21 | } 22 | 23 | public function getShopOwnerId() 24 | { 25 | return $this->shopOwnerId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.jianghu.fan.follow"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->shopOwnerId,"shopOwnerId"); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/LogisticsAddressRemoveRequest.php: -------------------------------------------------------------------------------- 1 | contactId = $contactId; 20 | $this->apiParas["contact_id"] = $contactId; 21 | } 22 | 23 | public function getContactId() 24 | { 25 | return $this->contactId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.logistics.address.remove"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->contactId,"contactId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/LogisticsAddressSearchRequest.php: -------------------------------------------------------------------------------- 1 | 12 | no_def:查询非默认地址
13 | get_def:查询默认取货地址
14 | cancel_def:查询默认退货地址
15 | 缺省此参数时,查询所有当前用户的地址库 16 |
17 | **/ 18 | private $rdef; 19 | 20 | private $apiParas = array(); 21 | 22 | public function setRdef($rdef) 23 | { 24 | $this->rdef = $rdef; 25 | $this->apiParas["rdef"] = $rdef; 26 | } 27 | 28 | public function getRdef() 29 | { 30 | return $this->rdef; 31 | } 32 | 33 | public function getApiMethodName() 34 | { 35 | return "taobao.logistics.address.search"; 36 | } 37 | 38 | public function getApiParas() 39 | { 40 | return $this->apiParas; 41 | } 42 | 43 | public function check() 44 | { 45 | 46 | } 47 | 48 | public function putOtherTextParam($key, $value) { 49 | $this->apiParas[$key] = $value; 50 | $this->$key = $value; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/LogisticsOnlineCancelRequest.php: -------------------------------------------------------------------------------- 1 | tid = $tid; 20 | $this->apiParas["tid"] = $tid; 21 | } 22 | 23 | public function getTid() 24 | { 25 | return $this->tid; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.logistics.online.cancel"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->tid,"tid"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/MarketingTagsGetRequest.php: -------------------------------------------------------------------------------- 1 | fields = $fields; 20 | $this->apiParas["fields"] = $fields; 21 | } 22 | 23 | public function getFields() 24 | { 25 | return $this->fields; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.marketing.tags.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->fields,"fields"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PictureDeleteRequest.php: -------------------------------------------------------------------------------- 1 | pictureIds = $pictureIds; 20 | $this->apiParas["picture_ids"] = $pictureIds; 21 | } 22 | 23 | public function getPictureIds() 24 | { 25 | return $this->pictureIds; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.picture.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->pictureIds,"pictureIds"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PictureIsreferencedGetRequest.php: -------------------------------------------------------------------------------- 1 | pictureId = $pictureId; 20 | $this->apiParas["picture_id"] = $pictureId; 21 | } 22 | 23 | public function getPictureId() 24 | { 25 | return $this->pictureId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.picture.isreferenced.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->pictureId,"pictureId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PictureUserinfoGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PosterChannelGetRequest.php: -------------------------------------------------------------------------------- 1 | channelId = $channelId; 20 | $this->apiParas["channel_id"] = $channelId; 21 | } 22 | 23 | public function getChannelId() 24 | { 25 | return $this->channelId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.poster.channel.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->channelId,"channelId"); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PosterChannelsGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PosterPostauctionsGetRequest.php: -------------------------------------------------------------------------------- 1 | posterId = $posterId; 20 | $this->apiParas["poster_id"] = $posterId; 21 | } 22 | 23 | public function getPosterId() 24 | { 25 | return $this->posterId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.poster.postauctions.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->posterId,"posterId"); 42 | RequestCheckUtil::checkMaxValue($this->posterId,2147483646,"posterId"); 43 | RequestCheckUtil::checkMinValue($this->posterId,1,"posterId"); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PosterPosterdetailGetRequest.php: -------------------------------------------------------------------------------- 1 | posterId = $posterId; 20 | $this->apiParas["poster_id"] = $posterId; 21 | } 22 | 23 | public function getPosterId() 24 | { 25 | return $this->posterId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.poster.posterdetail.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->posterId,"posterId"); 42 | RequestCheckUtil::checkMaxValue($this->posterId,2147483646,"posterId"); 43 | RequestCheckUtil::checkMinValue($this->posterId,1,"posterId"); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ProductPropimgDeleteRequest.php: -------------------------------------------------------------------------------- 1 | id = $id; 25 | $this->apiParas["id"] = $id; 26 | } 27 | 28 | public function getId() 29 | { 30 | return $this->id; 31 | } 32 | 33 | public function setProductId($productId) 34 | { 35 | $this->productId = $productId; 36 | $this->apiParas["product_id"] = $productId; 37 | } 38 | 39 | public function getProductId() 40 | { 41 | return $this->productId; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.product.propimg.delete"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->id,"id"); 58 | RequestCheckUtil::checkNotNull($this->productId,"productId"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PromotionActivityCancelRequest.php: -------------------------------------------------------------------------------- 1 | activityId = $activityId; 20 | $this->apiParas["activity_id"] = $activityId; 21 | } 22 | 23 | public function getActivityId() 24 | { 25 | return $this->activityId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.promotion.activity.cancel"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->activityId,"activityId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PromotionActivityDeleteRequest.php: -------------------------------------------------------------------------------- 1 | activityId = $activityId; 20 | $this->apiParas["activity_id"] = $activityId; 21 | } 22 | 23 | public function getActivityId() 24 | { 25 | return $this->activityId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.promotion.activity.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->activityId,"activityId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PromotionActivityGetRequest.php: -------------------------------------------------------------------------------- 1 | activityId = $activityId; 20 | $this->apiParas["activity_id"] = $activityId; 21 | } 22 | 23 | public function getActivityId() 24 | { 25 | return $this->activityId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.promotion.activity.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PromotionLimitdiscountDetailGetRequest.php: -------------------------------------------------------------------------------- 1 | limitDiscountId = $limitDiscountId; 20 | $this->apiParas["limit_discount_id"] = $limitDiscountId; 21 | } 22 | 23 | public function getLimitDiscountId() 24 | { 25 | return $this->limitDiscountId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.promotion.limitdiscount.detail.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->limitDiscountId,"limitDiscountId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/PromotionMealGetRequest.php: -------------------------------------------------------------------------------- 1 | mealId = $mealId; 25 | $this->apiParas["meal_id"] = $mealId; 26 | } 27 | 28 | public function getMealId() 29 | { 30 | return $this->mealId; 31 | } 32 | 33 | public function setStatus($status) 34 | { 35 | $this->status = $status; 36 | $this->apiParas["status"] = $status; 37 | } 38 | 39 | public function getStatus() 40 | { 41 | return $this->status; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.promotion.meal.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | } 58 | 59 | public function putOtherTextParam($key, $value) { 60 | $this->apiParas[$key] = $value; 61 | $this->$key = $value; 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ScitemGetRequest.php: -------------------------------------------------------------------------------- 1 | itemId = $itemId; 20 | $this->apiParas["item_id"] = $itemId; 21 | } 22 | 23 | public function getItemId() 24 | { 25 | return $this->itemId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.scitem.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->itemId,"itemId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ScitemMapQueryRequest.php: -------------------------------------------------------------------------------- 1 | itemId = $itemId; 27 | $this->apiParas["item_id"] = $itemId; 28 | } 29 | 30 | public function getItemId() 31 | { 32 | return $this->itemId; 33 | } 34 | 35 | public function setSkuId($skuId) 36 | { 37 | $this->skuId = $skuId; 38 | $this->apiParas["sku_id"] = $skuId; 39 | } 40 | 41 | public function getSkuId() 42 | { 43 | return $this->skuId; 44 | } 45 | 46 | public function getApiMethodName() 47 | { 48 | return "taobao.scitem.map.query"; 49 | } 50 | 51 | public function getApiParas() 52 | { 53 | return $this->apiParas; 54 | } 55 | 56 | public function check() 57 | { 58 | 59 | RequestCheckUtil::checkNotNull($this->itemId,"itemId"); 60 | } 61 | 62 | public function putOtherTextParam($key, $value) { 63 | $this->apiParas[$key] = $value; 64 | $this->$key = $value; 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ScitemOutercodeGetRequest.php: -------------------------------------------------------------------------------- 1 | outerCode = $outerCode; 20 | $this->apiParas["outer_code"] = $outerCode; 21 | } 22 | 23 | public function getOuterCode() 24 | { 25 | return $this->outerCode; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.scitem.outercode.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->outerCode,"outerCode"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SellercatsListGetRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 20 | $this->apiParas["nick"] = $nick; 21 | } 22 | 23 | public function getNick() 24 | { 25 | return $this->nick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.sellercats.list.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->nick,"nick"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SellercenterRoleInfoGetRequest.php: -------------------------------------------------------------------------------- 1 | roleId = $roleId; 20 | $this->apiParas["role_id"] = $roleId; 21 | } 22 | 23 | public function getRoleId() 24 | { 25 | return $this->roleId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.sellercenter.role.info.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->roleId,"roleId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SellercenterRolemembersGetRequest.php: -------------------------------------------------------------------------------- 1 | roleId = $roleId; 20 | $this->apiParas["role_id"] = $roleId; 21 | } 22 | 23 | public function getRoleId() 24 | { 25 | return $this->roleId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.sellercenter.rolemembers.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->roleId,"roleId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SellercenterRolesGetRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 20 | $this->apiParas["nick"] = $nick; 21 | } 22 | 23 | public function getNick() 24 | { 25 | return $this->nick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.sellercenter.roles.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->nick,"nick"); 42 | RequestCheckUtil::checkMaxLength($this->nick,500,"nick"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SellercenterSubuserPermissionsRolesGetRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 20 | $this->apiParas["nick"] = $nick; 21 | } 22 | 23 | public function getNick() 24 | { 25 | return $this->nick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.sellercenter.subuser.permissions.roles.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->nick,"nick"); 42 | RequestCheckUtil::checkMaxLength($this->nick,100,"nick"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SellercenterSubusersGetRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 20 | $this->apiParas["nick"] = $nick; 21 | } 22 | 23 | public function getNick() 24 | { 25 | return $this->nick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.sellercenter.subusers.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->nick,"nick"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SellercenterUserPermissionsGetRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 20 | $this->apiParas["nick"] = $nick; 21 | } 22 | 23 | public function getNick() 24 | { 25 | return $this->nick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.sellercenter.user.permissions.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->nick,"nick"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ShopGetRequest.php: -------------------------------------------------------------------------------- 1 | fields = $fields; 25 | $this->apiParas["fields"] = $fields; 26 | } 27 | 28 | public function getFields() 29 | { 30 | return $this->fields; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.shop.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->fields,"fields"); 58 | RequestCheckUtil::checkNotNull($this->nick,"nick"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ShopRemainshowcaseGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/ShopcatsListGetRequest.php: -------------------------------------------------------------------------------- 1 | fields = $fields; 20 | $this->apiParas["fields"] = $fields; 21 | } 22 | 23 | public function getFields() 24 | { 25 | return $this->fields; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.shopcats.list.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaAccountBalanceGetRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 20 | $this->apiParas["nick"] = $nick; 21 | } 22 | 23 | public function getNick() 24 | { 25 | return $this->nick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.simba.account.balance.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaAdgroupCatmatchGetRequest.php: -------------------------------------------------------------------------------- 1 | adgroupId = $adgroupId; 25 | $this->apiParas["adgroup_id"] = $adgroupId; 26 | } 27 | 28 | public function getAdgroupId() 29 | { 30 | return $this->adgroupId; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.adgroup.catmatch.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->adgroupId,"adgroupId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaAdgroupDeleteRequest.php: -------------------------------------------------------------------------------- 1 | adgroupId = $adgroupId; 25 | $this->apiParas["adgroup_id"] = $adgroupId; 26 | } 27 | 28 | public function getAdgroupId() 29 | { 30 | return $this->adgroupId; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.adgroup.delete"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->adgroupId,"adgroupId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaCampaignAddRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 25 | $this->apiParas["nick"] = $nick; 26 | } 27 | 28 | public function getNick() 29 | { 30 | return $this->nick; 31 | } 32 | 33 | public function setTitle($title) 34 | { 35 | $this->title = $title; 36 | $this->apiParas["title"] = $title; 37 | } 38 | 39 | public function getTitle() 40 | { 41 | return $this->title; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.campaign.add"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->title,"title"); 58 | RequestCheckUtil::checkMaxLength($this->title,20,"title"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaCampaignAreaGetRequest.php: -------------------------------------------------------------------------------- 1 | campaignId = $campaignId; 25 | $this->apiParas["campaign_id"] = $campaignId; 26 | } 27 | 28 | public function getCampaignId() 29 | { 30 | return $this->campaignId; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.campaign.area.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->campaignId,"campaignId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaCampaignAreaoptionsGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaCampaignBudgetGetRequest.php: -------------------------------------------------------------------------------- 1 | campaignId = $campaignId; 25 | $this->apiParas["campaign_id"] = $campaignId; 26 | } 27 | 28 | public function getCampaignId() 29 | { 30 | return $this->campaignId; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.campaign.budget.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->campaignId,"campaignId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaCampaignChanneloptionsGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaCampaignPlatformGetRequest.php: -------------------------------------------------------------------------------- 1 | campaignId = $campaignId; 25 | $this->apiParas["campaign_id"] = $campaignId; 26 | } 27 | 28 | public function getCampaignId() 29 | { 30 | return $this->campaignId; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.campaign.platform.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->campaignId,"campaignId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaCampaignScheduleGetRequest.php: -------------------------------------------------------------------------------- 1 | campaignId = $campaignId; 25 | $this->apiParas["campaign_id"] = $campaignId; 26 | } 27 | 28 | public function getCampaignId() 29 | { 30 | return $this->campaignId; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.campaign.schedule.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->campaignId,"campaignId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaCampaignsGetRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 20 | $this->apiParas["nick"] = $nick; 21 | } 22 | 23 | public function getNick() 24 | { 25 | return $this->nick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.simba.campaigns.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaCreativeDeleteRequest.php: -------------------------------------------------------------------------------- 1 | creativeId = $creativeId; 25 | $this->apiParas["creative_id"] = $creativeId; 26 | } 27 | 28 | public function getCreativeId() 29 | { 30 | return $this->creativeId; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.creative.delete"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->creativeId,"creativeId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaCustomersAuthorizedGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaInsightToplevelcatsGetRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 20 | $this->apiParas["nick"] = $nick; 21 | } 22 | 23 | public function getNick() 24 | { 25 | return $this->nick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.simba.insight.toplevelcats.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaKeywordsQscoreGetRequest.php: -------------------------------------------------------------------------------- 1 | adgroupId = $adgroupId; 25 | $this->apiParas["adgroup_id"] = $adgroupId; 26 | } 27 | 28 | public function getAdgroupId() 29 | { 30 | return $this->adgroupId; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.keywords.qscore.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->adgroupId,"adgroupId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaKeywordsbyadgroupidGetRequest.php: -------------------------------------------------------------------------------- 1 | adgroupId = $adgroupId; 25 | $this->apiParas["adgroup_id"] = $adgroupId; 26 | } 27 | 28 | public function getAdgroupId() 29 | { 30 | return $this->adgroupId; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.keywordsbyadgroupid.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | } 58 | 59 | public function putOtherTextParam($key, $value) { 60 | $this->apiParas[$key] = $value; 61 | $this->$key = $value; 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaKeywordscatQscoreGetRequest.php: -------------------------------------------------------------------------------- 1 | adgroupId = $adgroupId; 25 | $this->apiParas["adgroup_id"] = $adgroupId; 26 | } 27 | 28 | public function getAdgroupId() 29 | { 30 | return $this->adgroupId; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.keywordscat.qscore.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->adgroupId,"adgroupId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaLoginAuthsignGetRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 20 | $this->apiParas["nick"] = $nick; 21 | } 22 | 23 | public function getNick() 24 | { 25 | return $this->nick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.simba.login.authsign.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaNonsearchAlldemographicsGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaNonsearchAllplacesGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SimbaNonsearchDemographicsGetRequest.php: -------------------------------------------------------------------------------- 1 | campaignId = $campaignId; 25 | $this->apiParas["campaign_id"] = $campaignId; 26 | } 27 | 28 | public function getCampaignId() 29 | { 30 | return $this->campaignId; 31 | } 32 | 33 | public function setNick($nick) 34 | { 35 | $this->nick = $nick; 36 | $this->apiParas["nick"] = $nick; 37 | } 38 | 39 | public function getNick() 40 | { 41 | return $this->nick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.simba.nonsearch.demographics.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->campaignId,"campaignId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SubuserDepartmentsGetRequest.php: -------------------------------------------------------------------------------- 1 | userNick = $userNick; 20 | $this->apiParas["user_nick"] = $userNick; 21 | } 22 | 23 | public function getUserNick() 24 | { 25 | return $this->userNick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.subuser.departments.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->userNick,"userNick"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SubuserDutysGetRequest.php: -------------------------------------------------------------------------------- 1 | userNick = $userNick; 20 | $this->apiParas["user_nick"] = $userNick; 21 | } 22 | 23 | public function getUserNick() 24 | { 25 | return $this->userNick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.subuser.dutys.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->userNick,"userNick"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/SubusersGetRequest.php: -------------------------------------------------------------------------------- 1 | userNick = $userNick; 20 | $this->apiParas["user_nick"] = $userNick; 21 | } 22 | 23 | public function getUserNick() 24 | { 25 | return $this->userNick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.subusers.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->userNick,"userNick"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TaobaokeToolRelationRequest.php: -------------------------------------------------------------------------------- 1 | pubid = $pubid; 20 | $this->apiParas["pubid"] = $pubid; 21 | } 22 | 23 | public function getPubid() 24 | { 25 | return $this->pubid; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.taobaoke.tool.relation"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->pubid,"pubid"); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TimeGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TmallBrandcatControlGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TmallProductSpecGetRequest.php: -------------------------------------------------------------------------------- 1 | specId = $specId; 20 | $this->apiParas["spec_id"] = $specId; 21 | } 22 | 23 | public function getSpecId() 24 | { 25 | return $this->specId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "tmall.product.spec.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->specId,"specId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TmallSelectedItemsSearchRequest.php: -------------------------------------------------------------------------------- 1 | cid = $cid; 20 | $this->apiParas["cid"] = $cid; 21 | } 22 | 23 | public function getCid() 24 | { 25 | return $this->cid; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "tmall.selected.items.search"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->cid,"cid"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TmallTemaiSubcatsSearchRequest.php: -------------------------------------------------------------------------------- 1 | cat = $cat; 20 | $this->apiParas["cat"] = $cat; 21 | } 22 | 23 | public function getCat() 24 | { 25 | return $this->cat; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "tmall.temai.subcats.search"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->cat,"cat"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TopatsResultGetRequest.php: -------------------------------------------------------------------------------- 1 | taskId = $taskId; 20 | $this->apiParas["task_id"] = $taskId; 21 | } 22 | 23 | public function getTaskId() 24 | { 25 | return $this->taskId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.topats.result.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->taskId,"taskId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TopatsTaskDeleteRequest.php: -------------------------------------------------------------------------------- 1 | taskId = $taskId; 20 | $this->apiParas["task_id"] = $taskId; 21 | } 22 | 23 | public function getTaskId() 24 | { 25 | return $this->taskId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.topats.task.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->taskId,"taskId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TradePostageUpdateRequest.php: -------------------------------------------------------------------------------- 1 | postFee = $postFee; 25 | $this->apiParas["post_fee"] = $postFee; 26 | } 27 | 28 | public function getPostFee() 29 | { 30 | return $this->postFee; 31 | } 32 | 33 | public function setTid($tid) 34 | { 35 | $this->tid = $tid; 36 | $this->apiParas["tid"] = $tid; 37 | } 38 | 39 | public function getTid() 40 | { 41 | return $this->tid; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.trade.postage.update"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->postFee,"postFee"); 58 | RequestCheckUtil::checkNotNull($this->tid,"tid"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TradeSnapshotGetRequest.php: -------------------------------------------------------------------------------- 1 | fields = $fields; 25 | $this->apiParas["fields"] = $fields; 26 | } 27 | 28 | public function getFields() 29 | { 30 | return $this->fields; 31 | } 32 | 33 | public function setTid($tid) 34 | { 35 | $this->tid = $tid; 36 | $this->apiParas["tid"] = $tid; 37 | } 38 | 39 | public function getTid() 40 | { 41 | return $this->tid; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.trade.snapshot.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->fields,"fields"); 58 | RequestCheckUtil::checkNotNull($this->tid,"tid"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TraderateExplainAddRequest.php: -------------------------------------------------------------------------------- 1 | oid = $oid; 25 | $this->apiParas["oid"] = $oid; 26 | } 27 | 28 | public function getOid() 29 | { 30 | return $this->oid; 31 | } 32 | 33 | public function setReply($reply) 34 | { 35 | $this->reply = $reply; 36 | $this->apiParas["reply"] = $reply; 37 | } 38 | 39 | public function getReply() 40 | { 41 | return $this->reply; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.traderate.explain.add"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->oid,"oid"); 58 | RequestCheckUtil::checkNotNull($this->reply,"reply"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TravelItemsareaGetRequest.php: -------------------------------------------------------------------------------- 1 | cid = $cid; 20 | $this->apiParas["cid"] = $cid; 21 | } 22 | 23 | public function getCid() 24 | { 25 | return $this->cid; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.travel.itemsarea.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->cid,"cid"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/TripJipiaoAgentOrderGetRequest.php: -------------------------------------------------------------------------------- 1 | orderIds = $orderIds; 20 | $this->apiParas["order_ids"] = $orderIds; 21 | } 22 | 23 | public function getOrderIds() 24 | { 25 | return $this->orderIds; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.trip.jipiao.agent.order.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->orderIds,"orderIds"); 42 | RequestCheckUtil::checkMaxListSize($this->orderIds,1,"orderIds"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpActivitiesListGetRequest.php: -------------------------------------------------------------------------------- 1 | ids = $ids; 20 | $this->apiParas["ids"] = $ids; 21 | } 22 | 23 | public function getIds() 24 | { 25 | return $this->ids; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.activities.list.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->ids,"ids"); 42 | RequestCheckUtil::checkMaxListSize($this->ids,40,"ids"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpActivityDeleteRequest.php: -------------------------------------------------------------------------------- 1 | actId = $actId; 20 | $this->apiParas["act_id"] = $actId; 21 | } 22 | 23 | public function getActId() 24 | { 25 | return $this->actId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.activity.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->actId,"actId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpActivityGetRequest.php: -------------------------------------------------------------------------------- 1 | actId = $actId; 20 | $this->apiParas["act_id"] = $actId; 21 | } 22 | 23 | public function getActId() 24 | { 25 | return $this->actId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.activity.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->actId,"actId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpDetailDeleteRequest.php: -------------------------------------------------------------------------------- 1 | detailId = $detailId; 20 | $this->apiParas["detail_id"] = $detailId; 21 | } 22 | 23 | public function getDetailId() 24 | { 25 | return $this->detailId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.detail.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->detailId,"detailId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpDetailGetRequest.php: -------------------------------------------------------------------------------- 1 | detailId = $detailId; 20 | $this->apiParas["detail_id"] = $detailId; 21 | } 22 | 23 | public function getDetailId() 24 | { 25 | return $this->detailId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.detail.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->detailId,"detailId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpMbbGetbycodeRequest.php: -------------------------------------------------------------------------------- 1 | code = $code; 20 | $this->apiParas["code"] = $code; 21 | } 22 | 23 | public function getCode() 24 | { 25 | return $this->code; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.mbb.getbycode"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->code,"code"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpMbbGetbyidRequest.php: -------------------------------------------------------------------------------- 1 | id = $id; 20 | $this->apiParas["id"] = $id; 21 | } 22 | 23 | public function getId() 24 | { 25 | return $this->id; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.mbb.getbyid"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->id,"id"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpMbbsGetRequest.php: -------------------------------------------------------------------------------- 1 | type = $type; 21 | $this->apiParas["type"] = $type; 22 | } 23 | 24 | public function getType() 25 | { 26 | return $this->type; 27 | } 28 | 29 | public function getApiMethodName() 30 | { 31 | return "taobao.ump.mbbs.get"; 32 | } 33 | 34 | public function getApiParas() 35 | { 36 | return $this->apiParas; 37 | } 38 | 39 | public function check() 40 | { 41 | 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpMbbsListGetRequest.php: -------------------------------------------------------------------------------- 1 | ids = $ids; 20 | $this->apiParas["ids"] = $ids; 21 | } 22 | 23 | public function getIds() 24 | { 25 | return $this->ids; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.mbbs.list.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->ids,"ids"); 42 | RequestCheckUtil::checkMaxListSize($this->ids,20,"ids"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpPromotionGetRequest.php: -------------------------------------------------------------------------------- 1 | channelKey = $channelKey; 25 | $this->apiParas["channel_key"] = $channelKey; 26 | } 27 | 28 | public function getChannelKey() 29 | { 30 | return $this->channelKey; 31 | } 32 | 33 | public function setItemId($itemId) 34 | { 35 | $this->itemId = $itemId; 36 | $this->apiParas["item_id"] = $itemId; 37 | } 38 | 39 | public function getItemId() 40 | { 41 | return $this->itemId; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.ump.promotion.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->itemId,"itemId"); 58 | } 59 | 60 | public function putOtherTextParam($key, $value) { 61 | $this->apiParas[$key] = $value; 62 | $this->$key = $value; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpRangeGetRequest.php: -------------------------------------------------------------------------------- 1 | actId = $actId; 20 | $this->apiParas["act_id"] = $actId; 21 | } 22 | 23 | public function getActId() 24 | { 25 | return $this->actId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.range.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->actId,"actId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpToolAddRequest.php: -------------------------------------------------------------------------------- 1 | content = $content; 20 | $this->apiParas["content"] = $content; 21 | } 22 | 23 | public function getContent() 24 | { 25 | return $this->content; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.tool.add"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->content,"content"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpToolDeleteRequest.php: -------------------------------------------------------------------------------- 1 | toolId = $toolId; 20 | $this->apiParas["tool_id"] = $toolId; 21 | } 22 | 23 | public function getToolId() 24 | { 25 | return $this->toolId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.tool.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->toolId,"toolId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpToolGetRequest.php: -------------------------------------------------------------------------------- 1 | toolId = $toolId; 20 | $this->apiParas["tool_id"] = $toolId; 21 | } 22 | 23 | public function getToolId() 24 | { 25 | return $this->toolId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.tool.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->toolId,"toolId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpToolUpdateRequest.php: -------------------------------------------------------------------------------- 1 | content = $content; 25 | $this->apiParas["content"] = $content; 26 | } 27 | 28 | public function getContent() 29 | { 30 | return $this->content; 31 | } 32 | 33 | public function setToolId($toolId) 34 | { 35 | $this->toolId = $toolId; 36 | $this->apiParas["tool_id"] = $toolId; 37 | } 38 | 39 | public function getToolId() 40 | { 41 | return $this->toolId; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.ump.tool.update"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->content,"content"); 58 | RequestCheckUtil::checkNotNull($this->toolId,"toolId"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UmpToolsGetRequest.php: -------------------------------------------------------------------------------- 1 | toolCode = $toolCode; 20 | $this->apiParas["tool_code"] = $toolCode; 21 | } 22 | 23 | public function getToolCode() 24 | { 25 | return $this->toolCode; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.ump.tools.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UserBuyerGetRequest.php: -------------------------------------------------------------------------------- 1 | fields = $fields; 20 | $this->apiParas["fields"] = $fields; 21 | } 22 | 23 | public function getFields() 24 | { 25 | return $this->fields; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.user.buyer.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->fields,"fields"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UserSellerGetRequest.php: -------------------------------------------------------------------------------- 1 | fields = $fields; 20 | $this->apiParas["fields"] = $fields; 21 | } 22 | 23 | public function getFields() 24 | { 25 | return $this->fields; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.user.seller.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->fields,"fields"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/UsersGetRequest.php: -------------------------------------------------------------------------------- 1 | fields = $fields; 25 | $this->apiParas["fields"] = $fields; 26 | } 27 | 28 | public function getFields() 29 | { 30 | return $this->fields; 31 | } 32 | 33 | public function setNicks($nicks) 34 | { 35 | $this->nicks = $nicks; 36 | $this->apiParas["nicks"] = $nicks; 37 | } 38 | 39 | public function getNicks() 40 | { 41 | return $this->nicks; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.users.get"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->fields,"fields"); 58 | RequestCheckUtil::checkNotNull($this->nicks,"nicks"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WangwangEserviceGroupmemberGetRequest.php: -------------------------------------------------------------------------------- 1 | managerId = $managerId; 20 | $this->apiParas["manager_id"] = $managerId; 21 | } 22 | 23 | public function getManagerId() 24 | { 25 | return $this->managerId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.wangwang.eservice.groupmember.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->managerId,"managerId"); 42 | RequestCheckUtil::checkMaxLength($this->managerId,128,"managerId"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WangwangEserviceStreamweigthsGetRequest.php: -------------------------------------------------------------------------------- 1 | apiParas; 21 | } 22 | 23 | public function check() 24 | { 25 | 26 | } 27 | 28 | public function putOtherTextParam($key, $value) { 29 | $this->apiParas[$key] = $value; 30 | $this->$key = $value; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WidgetAppapiruleCheckRequest.php: -------------------------------------------------------------------------------- 1 | apiName = $apiName; 20 | $this->apiParas["api_name"] = $apiName; 21 | } 22 | 23 | public function getApiName() 24 | { 25 | return $this->apiName; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.widget.appapirule.check"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->apiName,"apiName"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WidgetLoginstatusGetRequest.php: -------------------------------------------------------------------------------- 1 | nick = $nick; 20 | $this->apiParas["nick"] = $nick; 21 | } 22 | 23 | public function getNick() 24 | { 25 | return $this->nick; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.widget.loginstatus.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | } 42 | 43 | public function putOtherTextParam($key, $value) { 44 | $this->apiParas[$key] = $value; 45 | $this->$key = $value; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WlbItemAuthorizationDeleteRequest.php: -------------------------------------------------------------------------------- 1 | authorizeId = $authorizeId; 20 | $this->apiParas["authorize_id"] = $authorizeId; 21 | } 22 | 23 | public function getAuthorizeId() 24 | { 25 | return $this->authorizeId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.wlb.item.authorization.delete"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->authorizeId,"authorizeId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WlbItemCombinationGetRequest.php: -------------------------------------------------------------------------------- 1 | itemId = $itemId; 20 | $this->apiParas["item_id"] = $itemId; 21 | } 22 | 23 | public function getItemId() 24 | { 25 | return $this->itemId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.wlb.item.combination.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->itemId,"itemId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WlbItemDeleteRequest.php: -------------------------------------------------------------------------------- 1 | itemId = $itemId; 25 | $this->apiParas["item_id"] = $itemId; 26 | } 27 | 28 | public function getItemId() 29 | { 30 | return $this->itemId; 31 | } 32 | 33 | public function setUserNick($userNick) 34 | { 35 | $this->userNick = $userNick; 36 | $this->apiParas["user_nick"] = $userNick; 37 | } 38 | 39 | public function getUserNick() 40 | { 41 | return $this->userNick; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.wlb.item.delete"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | RequestCheckUtil::checkNotNull($this->itemId,"itemId"); 58 | RequestCheckUtil::checkNotNull($this->userNick,"userNick"); 59 | } 60 | 61 | public function putOtherTextParam($key, $value) { 62 | $this->apiParas[$key] = $value; 63 | $this->$key = $value; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WlbItemGetRequest.php: -------------------------------------------------------------------------------- 1 | itemId = $itemId; 20 | $this->apiParas["item_id"] = $itemId; 21 | } 22 | 23 | public function getItemId() 24 | { 25 | return $this->itemId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.wlb.item.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->itemId,"itemId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WlbItemMapGetRequest.php: -------------------------------------------------------------------------------- 1 | itemId = $itemId; 20 | $this->apiParas["item_id"] = $itemId; 21 | } 22 | 23 | public function getItemId() 24 | { 25 | return $this->itemId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.wlb.item.map.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->itemId,"itemId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WlbNotifyMessageConfirmRequest.php: -------------------------------------------------------------------------------- 1 | messageId = $messageId; 20 | $this->apiParas["message_id"] = $messageId; 21 | } 22 | 23 | public function getMessageId() 24 | { 25 | return $this->messageId; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.wlb.notify.message.confirm"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->messageId,"messageId"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WlbOrderCancelRequest.php: -------------------------------------------------------------------------------- 1 | wlbOrderCode = $wlbOrderCode; 20 | $this->apiParas["wlb_order_code"] = $wlbOrderCode; 21 | } 22 | 23 | public function getWlbOrderCode() 24 | { 25 | return $this->wlbOrderCode; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.wlb.order.cancel"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->wlbOrderCode,"wlbOrderCode"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WlbOrderConsignRequest.php: -------------------------------------------------------------------------------- 1 | wlbOrderCode = $wlbOrderCode; 20 | $this->apiParas["wlb_order_code"] = $wlbOrderCode; 21 | } 22 | 23 | public function getWlbOrderCode() 24 | { 25 | return $this->wlbOrderCode; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.wlb.order.consign"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->wlbOrderCode,"wlbOrderCode"); 42 | RequestCheckUtil::checkMaxLength($this->wlbOrderCode,64,"wlbOrderCode"); 43 | } 44 | 45 | public function putOtherTextParam($key, $value) { 46 | $this->apiParas[$key] = $value; 47 | $this->$key = $value; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WlbOrderscheduleruleQueryRequest.php: -------------------------------------------------------------------------------- 1 | pageNo = $pageNo; 25 | $this->apiParas["page_no"] = $pageNo; 26 | } 27 | 28 | public function getPageNo() 29 | { 30 | return $this->pageNo; 31 | } 32 | 33 | public function setPageSize($pageSize) 34 | { 35 | $this->pageSize = $pageSize; 36 | $this->apiParas["page_size"] = $pageSize; 37 | } 38 | 39 | public function getPageSize() 40 | { 41 | return $this->pageSize; 42 | } 43 | 44 | public function getApiMethodName() 45 | { 46 | return "taobao.wlb.orderschedulerule.query"; 47 | } 48 | 49 | public function getApiParas() 50 | { 51 | return $this->apiParas; 52 | } 53 | 54 | public function check() 55 | { 56 | 57 | } 58 | 59 | public function putOtherTextParam($key, $value) { 60 | $this->apiParas[$key] = $value; 61 | $this->$key = $value; 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WlbOrderstatusGetRequest.php: -------------------------------------------------------------------------------- 1 | orderCode = $orderCode; 20 | $this->apiParas["order_code"] = $orderCode; 21 | } 22 | 23 | public function getOrderCode() 24 | { 25 | return $this->orderCode; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.wlb.orderstatus.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->orderCode,"orderCode"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/models/taobaoapi/top/request/WlbWlborderGetRequest.php: -------------------------------------------------------------------------------- 1 | wlbOrderCode = $wlbOrderCode; 20 | $this->apiParas["wlb_order_code"] = $wlbOrderCode; 21 | } 22 | 23 | public function getWlbOrderCode() 24 | { 25 | return $this->wlbOrderCode; 26 | } 27 | 28 | public function getApiMethodName() 29 | { 30 | return "taobao.wlb.wlborder.get"; 31 | } 32 | 33 | public function getApiParas() 34 | { 35 | return $this->apiParas; 36 | } 37 | 38 | public function check() 39 | { 40 | 41 | RequestCheckUtil::checkNotNull($this->wlbOrderCode,"wlbOrderCode"); 42 | } 43 | 44 | public function putOtherTextParam($key, $value) { 45 | $this->apiParas[$key] = $value; 46 | $this->$key = $value; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/admin/include_login.php: -------------------------------------------------------------------------------- 1 | input->cookie('user_email', TRUE)||!$this->input->cookie('user_password', TRUE)){ 11 | Header("HTTP/1.1 303 See Other"); 12 | Header("Location: ".site_url('login')); 13 | exit; 14 | } 15 | $query = $this->db->get_where('admin', array('user_email' => $this->input->cookie('user_email', TRUE),'user_password' =>$this->input->cookie('user_password', TRUE))); 16 | $result = $query->result(); 17 | 18 | if(empty($result)){ 19 | //跳转 20 | Header("HTTP/1.1 303 See Other"); 21 | Header("Location: ".site_url('login')); 22 | exit; 23 | }else{ 24 | 25 | } 26 | -------------------------------------------------------------------------------- /application/views/admin/index_view.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/admin/status/cats_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 8 | 9 | num_rows()>0){ ?> 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | result() as $array): 22 | //条目开始 23 | ?> 24 | 25 | 26 | 27 | 28 | 29 | 30 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 |
类别名称条目点击点击/条目
cat_name ?>count ?>sum ?>sum/$array->count ?>
总计
41 | 42 | 43 |
44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /assets/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/assets/img/icons.png -------------------------------------------------------------------------------- /assets/img/icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/assets/img/icons.psd -------------------------------------------------------------------------------- /assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/assets/img/loading.gif -------------------------------------------------------------------------------- /assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/assets/img/logo.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/license.txt -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuguo/33pu/e1fd8138dfca8a3d7033dda02ceed0a607018bf7/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | --------------------------------------------------------------------------------