• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Taobao_RequestCheckUtil类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Taobao_RequestCheckUtil的典型用法代码示例。如果您正苦于以下问题:PHP Taobao_RequestCheckUtil类的具体用法?PHP Taobao_RequestCheckUtil怎么用?PHP Taobao_RequestCheckUtil使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了Taobao_RequestCheckUtil类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->campaignId, "campaignId");
     Taobao_RequestCheckUtil::checkNotNull($this->onlineStatus, "onlineStatus");
     Taobao_RequestCheckUtil::checkNotNull($this->title, "title");
     Taobao_RequestCheckUtil::checkMaxLength($this->title, 20, "title");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:SimbaCampaignUpdateRequest.php


示例2: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkMaxValue($this->dbStatus, 3, "dbStatus");
     Taobao_RequestCheckUtil::checkMinValue($this->dbStatus, 0, "dbStatus");
     Taobao_RequestCheckUtil::checkNotNull($this->instanceName, "instanceName");
     Taobao_RequestCheckUtil::checkMaxLength($this->instanceName, 30, "instanceName");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:RdsDbGetRequest.php


示例3: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->fields, "fields");
     Taobao_RequestCheckUtil::checkNotNull($this->tid, "tid");
     Taobao_RequestCheckUtil::checkMaxValue($this->tid, 9223372036854775807, "tid");
     Taobao_RequestCheckUtil::checkMinValue($this->tid, -9.223372036854776E+18, "tid");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:TradeAmountGetRequest.php


示例4: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->num, "num");
     Taobao_RequestCheckUtil::checkMinValue($this->num, 0, "num");
     Taobao_RequestCheckUtil::checkNotNull($this->numIid, "numIid");
     Taobao_RequestCheckUtil::checkMinValue($this->numIid, 0, "numIid");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:ItemUpdateListingRequest.php


示例5: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->appName, "appName");
     Taobao_RequestCheckUtil::checkNotNull($this->buyerNick, "buyerNick");
     Taobao_RequestCheckUtil::checkNotNull($this->groupId, "groupId");
     Taobao_RequestCheckUtil::checkNotNull($this->sellerNick, "sellerNick");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:HanoiGroupFilterRequest.php


示例6: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->denominations, "denominations");
     Taobao_RequestCheckUtil::checkMaxValue($this->denominations, 100, "denominations");
     Taobao_RequestCheckUtil::checkMinValue($this->denominations, 3, "denominations");
     Taobao_RequestCheckUtil::checkNotNull($this->endTime, "endTime");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:PromotionCouponAddRequest.php


示例7: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->merchantOrderNo, "merchantOrderNo");
     Taobao_RequestCheckUtil::checkMaxLength($this->merchantOrderNo, 32, "merchantOrderNo");
     Taobao_RequestCheckUtil::checkNotNull($this->orderType, "orderType");
     Taobao_RequestCheckUtil::checkMaxLength($this->orderType, 10, "orderType");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:AlipayEbppBillGetRequest.php


示例8: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->buyerIds, "buyerIds");
     Taobao_RequestCheckUtil::checkMaxListSize($this->buyerIds, 10, "buyerIds");
     Taobao_RequestCheckUtil::checkNotNull($this->groupIds, "groupIds");
     Taobao_RequestCheckUtil::checkMaxListSize($this->groupIds, 10, "groupIds");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:CrmMembersGroupsBatchdeleteRequest.php


示例9: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkMaxLength($this->code, 40, "code");
     Taobao_RequestCheckUtil::checkNotNull($this->grantType, "grantType");
     Taobao_RequestCheckUtil::checkMaxLength($this->grantType, 20, "grantType");
     Taobao_RequestCheckUtil::checkMaxLength($this->refreshToken, 40, "refreshToken");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:AlipaySystemOauthTokenRequest.php


示例10: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->endDate, "endDate");
     Taobao_RequestCheckUtil::checkNotNull($this->pageNo, "pageNo");
     Taobao_RequestCheckUtil::checkNotNull($this->pageSize, "pageSize");
     Taobao_RequestCheckUtil::checkNotNull($this->startDate, "startDate");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:CaipiaoPresentItemsGetRequest.php


示例11: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->fields, "fields");
     Taobao_RequestCheckUtil::checkNotNull($this->refundId, "refundId");
     Taobao_RequestCheckUtil::checkMaxValue($this->refundId, 9223372036854775807, "refundId");
     Taobao_RequestCheckUtil::checkMinValue($this->refundId, 1, "refundId");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:RefundGetRequest.php


示例12: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkMaxValue($this->flag, 5, "flag");
     Taobao_RequestCheckUtil::checkMinValue($this->flag, 0, "flag");
     Taobao_RequestCheckUtil::checkNotNull($this->memo, "memo");
     Taobao_RequestCheckUtil::checkNotNull($this->tid, "tid");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:TradeMemoAddRequest.php


示例13: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkMaxValue($this->budget, 99999, "budget");
     Taobao_RequestCheckUtil::checkMinValue($this->budget, 30, "budget");
     Taobao_RequestCheckUtil::checkNotNull($this->campaignId, "campaignId");
     Taobao_RequestCheckUtil::checkNotNull($this->useSmooth, "useSmooth");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:SimbaCampaignBudgetUpdateRequest.php


示例14: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->groupId, "groupId");
     Taobao_RequestCheckUtil::checkMinValue($this->groupId, 1, "groupId");
     Taobao_RequestCheckUtil::checkNotNull($this->newGroupName, "newGroupName");
     Taobao_RequestCheckUtil::checkMaxLength($this->newGroupName, 15, "newGroupName");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:CrmGroupUpdateRequest.php


示例15: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->filter, "filter");
     Taobao_RequestCheckUtil::checkNotNull($this->time, "time");
     Taobao_RequestCheckUtil::checkNotNull($this->words, "words");
     Taobao_RequestCheckUtil::checkMaxListSize($this->words, 170, "words");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:SimbaInsightWordsbaseGetRequest.php


示例16: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkMinValue($this->pageNo, 1, "pageNo");
     Taobao_RequestCheckUtil::checkMaxValue($this->pageSize, 1000, "pageSize");
     Taobao_RequestCheckUtil::checkMinValue($this->pageSize, 1, "pageSize");
     Taobao_RequestCheckUtil::checkNotNull($this->startTime, "startTime");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:SimbaAdgroupsChangedGetRequest.php


示例17: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->catId, "catId");
     Taobao_RequestCheckUtil::checkNotNull($this->type, "type");
     Taobao_RequestCheckUtil::checkMaxValue($this->type, 1, "type");
     Taobao_RequestCheckUtil::checkMinValue($this->type, -1, "type");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:ItemAnchorGetRequest.php


示例18: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->fields, "fields");
     Taobao_RequestCheckUtil::checkNotNull($this->videoAppKey, "videoAppKey");
     Taobao_RequestCheckUtil::checkNotNull($this->videoIds, "videoIds");
     Taobao_RequestCheckUtil::checkMaxListSize($this->videoIds, 100, "videoIds");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:VideosQueryRequest.php


示例19: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->currentPage, "currentPage");
     Taobao_RequestCheckUtil::checkNotNull($this->date, "date");
     Taobao_RequestCheckUtil::checkMaxValue($this->pageSize, 100, "pageSize");
     Taobao_RequestCheckUtil::checkMinValue($this->pageSize, 1, "pageSize");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:FuwuScoresGetRequest.php


示例20: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->dbName, "dbName");
     Taobao_RequestCheckUtil::checkMaxLength($this->dbName, 64, "dbName");
     Taobao_RequestCheckUtil::checkNotNull($this->instanceName, "instanceName");
     Taobao_RequestCheckUtil::checkMaxLength($this->instanceName, 30, "instanceName");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:RdsDbCreateRequest.php



注:本文中的Taobao_RequestCheckUtil类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Task类代码示例发布时间:2022-05-23
下一篇:
PHP TagsHelperRoute类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap