当前位置: 首页>>代码示例>>PHP>>正文


PHP Taobao_RequestCheckUtil::checkMaxListSize方法代码示例

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


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

示例1: 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

示例2: check

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

示例3: 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

示例4: 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

示例5: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkMaxListSize($this->excludeArea, 4, "excludeArea");
     Taobao_RequestCheckUtil::checkNotNull($this->grade, "grade");
     Taobao_RequestCheckUtil::checkMaxListSize($this->grade, 4, "grade");
     Taobao_RequestCheckUtil::checkMaxListSize($this->point, 4, "point");
     Taobao_RequestCheckUtil::checkMaxListSize($this->postage, 4, "postage");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:8,代码来源:TmallCrmEquitySetRequest.php

示例6: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->categoryIds, "categoryIds");
     Taobao_RequestCheckUtil::checkMaxListSize($this->categoryIds, 200, "categoryIds");
     Taobao_RequestCheckUtil::checkNotNull($this->resultNum, "resultNum");
     Taobao_RequestCheckUtil::checkMaxValue($this->resultNum, 100, "resultNum");
     Taobao_RequestCheckUtil::checkMinValue($this->resultNum, 1, "resultNum");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:8,代码来源:SimbaInsightCatstopwordGetRequest.php

示例7: check

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

示例8: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkMaxLength($this->description, 20, "description");
     Taobao_RequestCheckUtil::checkNotNull($this->name, "name");
     Taobao_RequestCheckUtil::checkMaxLength($this->name, 20, "name");
     Taobao_RequestCheckUtil::checkNotNull($this->nick, "nick");
     Taobao_RequestCheckUtil::checkMaxLength($this->nick, 500, "nick");
     Taobao_RequestCheckUtil::checkMaxListSize($this->permissionCodes, 2000, "permissionCodes");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:9,代码来源:SellercenterRoleAddRequest.php

示例9: check

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

示例10: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->policyId, "policyId");
     Taobao_RequestCheckUtil::checkMaxListSize($this->policyId, 100, "policyId");
     Taobao_RequestCheckUtil::checkMaxLength($this->policyId, 6500, "policyId");
     Taobao_RequestCheckUtil::checkNotNull($this->status, "status");
     Taobao_RequestCheckUtil::checkNotNull($this->type, "type");
     Taobao_RequestCheckUtil::checkMaxValue($this->type, 1, "type");
     Taobao_RequestCheckUtil::checkMinValue($this->type, 0, "type");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:10,代码来源:JipiaoPolicystatusUpdateRequest.php

示例11: check

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

示例12: check

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

示例13: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->orderId, "orderId");
     Taobao_RequestCheckUtil::checkMaxListSize($this->pnrInfo, 9, "pnrInfo");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:5,代码来源:TripJipiaoAgentOrderConfirmRequest.php

示例14: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->fields, "fields");
     Taobao_RequestCheckUtil::checkMaxListSize($this->numIids, 10, "numIids");
     Taobao_RequestCheckUtil::checkMaxLength($this->outerCode, 12, "outerCode");
     Taobao_RequestCheckUtil::checkMaxListSize($this->trackIids, 10, "trackIids");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:TaobaokeItemsDetailGetRequest.php

示例15: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->occureTime, "occureTime");
     Taobao_RequestCheckUtil::checkNotNull($this->operateDetail, "operateDetail");
     Taobao_RequestCheckUtil::checkMaxLength($this->operateDetail, 200, "operateDetail");
     Taobao_RequestCheckUtil::checkMaxLength($this->operatorContact, 20, "operatorContact");
     Taobao_RequestCheckUtil::checkMaxLength($this->operatorName, 20, "operatorName");
     Taobao_RequestCheckUtil::checkMaxListSize($this->subTid, 50, "subTid");
     Taobao_RequestCheckUtil::checkNotNull($this->tradeId, "tradeId");
 }
开发者ID:zhang988925,项目名称:CZD_Yaf_Extension,代码行数:10,代码来源:LogisticsOrderstorePushRequest.php


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