25 lines
567 B
PHP
25 lines
567 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Administrator
|
|
* Date: 2020/4/24
|
|
* Time: 10:53
|
|
*/
|
|
|
|
namespace app\api\validate;
|
|
|
|
|
|
class SchEnrollValidate extends BaseValidate
|
|
{
|
|
protected $rule = [
|
|
'userPro' => 'require|isPostInt',
|
|
'subType' => 'require',
|
|
'sch_id' => 'require|isPostInt',
|
|
'batch' => 'require|isPostInt'
|
|
];
|
|
protected $message = [
|
|
'userPro.isPostInt' => 'userPro必须是正整数',
|
|
'sch_id.isPostInt' => 'sch_id必须是正整数',
|
|
'batch.isPostInt' => 'batch必须是正整数',
|
|
];
|
|
} |