21 lines
325 B
PHP
21 lines
325 B
PHP
<?php
|
|
|
|
namespace app\api\validate;
|
|
|
|
use think\Validate;
|
|
|
|
class SearchValidate extends Validate
|
|
{
|
|
protected $rule = [
|
|
'limit' => 'between:1,100'
|
|
];
|
|
|
|
protected $message = [
|
|
'limit.between' => '内容条数只能在1-100之间'
|
|
];
|
|
|
|
protected $scene = [
|
|
'search' => ['limit']
|
|
];
|
|
}
|