本文整理匯總了PHP中Taobao_RequestCheckUtil類的典型用法代碼示例。如果您正苦於以下問題:PHP Taobao_RequestCheckUtil類的具體用法?PHP Taobao_RequestCheckUtil怎麽用?PHP Taobao_RequestCheckUtil使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Taobao_RequestCheckUtil類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}
示例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");
}