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.
27 lines
481 B
27 lines
481 B
2 months ago
|
<?php
|
||
|
|
||
|
|
||
|
namespace app\agent\validate;
|
||
|
|
||
|
|
||
|
use think\Validate;
|
||
|
|
||
|
class AgentAdminValidate extends Validate
|
||
|
{
|
||
|
|
||
|
protected $rule = [
|
||
|
'admin_id' => ['require'],
|
||
|
'status' => ['require','number', 'in' => [-1, 0, 1]],
|
||
|
'account|名字' => ['require'],
|
||
|
'passwd|密码' => [ 'require'],
|
||
|
];
|
||
|
|
||
|
protected $scene = [
|
||
|
'addSubAdmin' => ['account', 'passwd'],
|
||
|
'updateSubAdmin' => ['passwd'],
|
||
|
'delSubAdmin' => ['admin_id']
|
||
|
];
|
||
|
|
||
|
|
||
|
|
||
|
}
|