23 lines
410 B
PHP
23 lines
410 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Administrator
|
|
* Date: 2020/4/13
|
|
* Time: 18:22
|
|
*/
|
|
|
|
namespace app\api\validate;
|
|
|
|
|
|
class LoginValidate extends BaseValidate
|
|
{
|
|
protected $rule = [
|
|
'telnum' => 'require',
|
|
'code' => 'require|isPostInt'
|
|
];
|
|
protected $message = [
|
|
'telnum.require' => '手机号必须',
|
|
'code.isPostInt' => '验证码必须是正整数'
|
|
];
|
|
|
|
} |