You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
336 B
21 lines
336 B
2 months ago
|
<?php
|
||
|
|
||
|
|
||
|
namespace app\agent\validate;
|
||
|
|
||
|
|
||
|
use think\Validate;
|
||
|
|
||
|
class Cardauth2ArticleValidate extends Validate
|
||
|
{
|
||
|
protected $rule = [
|
||
|
'modular_id' => 'require|number|gt:0',
|
||
|
'number|获客文章数量' => 'require|integer|egt:0',
|
||
|
];
|
||
|
|
||
|
protected $scene = [
|
||
|
'create' => ['number', 'modular_id'],
|
||
|
];
|
||
|
|
||
|
|
||
|
}
|