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


PHP Taobao_RequestCheckUtil::checkMaxLength方法代码示例

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


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

示例1: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->cooperateId, "cooperateId");
     Taobao_RequestCheckUtil::checkNotNull($this->endRemainDays, "endRemainDays");
     Taobao_RequestCheckUtil::checkNotNull($this->endRemark, "endRemark");
     Taobao_RequestCheckUtil::checkMaxLength($this->endRemark, 2000, "endRemark");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:7,代码来源:FenxiaoCooperationTerminateRequest.php

示例2: check

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

示例3: check

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

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

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

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

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

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

示例10: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->policyId, "policyId");
     Taobao_RequestCheckUtil::checkMaxLength($this->policyId, 64, "policyId");
     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,代码行数:8,代码来源:JipiaoPolicyGetRequest.php

示例11: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->extEntityId, "extEntityId");
     Taobao_RequestCheckUtil::checkNotNull($this->extEntityType, "extEntityType");
     Taobao_RequestCheckUtil::checkNotNull($this->itemId, "itemId");
     Taobao_RequestCheckUtil::checkNotNull($this->userNick, "userNick");
     Taobao_RequestCheckUtil::checkMaxLength($this->userNick, 64, "userNick");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:8,代码来源:WlbItemSynchronizeRequest.php

示例12: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->hid, "hid");
     Taobao_RequestCheckUtil::checkMinValue($this->hid, 0, "hid");
     Taobao_RequestCheckUtil::checkNotNull($this->name, "name");
     Taobao_RequestCheckUtil::checkMaxLength($this->name, 30, "name");
     Taobao_RequestCheckUtil::checkMaxLength($this->siteParam, 100, "siteParam");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:8,代码来源:HotelTypeAddRequest.php

示例13: check

 public function check()
 {
     Taobao_RequestCheckUtil::checkNotNull($this->oid, "oid");
     Taobao_RequestCheckUtil::checkNotNull($this->operType, "operType");
     Taobao_RequestCheckUtil::checkMaxLength($this->operType, 1, "operType");
     Taobao_RequestCheckUtil::checkMaxLength($this->reasonText, 500, "reasonText");
     Taobao_RequestCheckUtil::checkMaxLength($this->reasonType, 1, "reasonType");
 }
开发者ID:liu33851861,项目名称:CZD_Yaf_Extension,代码行数:8,代码来源:HotelOrderFaceDealRequest.php

示例14: check

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

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


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