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.
29 lines
608 B
29 lines
608 B
<?php |
|
|
|
/** |
|
* |
|
* Resource.php |
|
* User: ChenLong |
|
* DateTime: 2020-05-06 16:43 |
|
*/ |
|
|
|
namespace app\common\validate; |
|
|
|
use think\Validate; |
|
|
|
class Resource extends Validate |
|
{ |
|
protected $rule = [ |
|
'type|类型' => 'require|number|in:1,2', |
|
'tag|标签' => 'require', |
|
'pid|上级' => 'require|number', |
|
'path|文件路径' => 'require', |
|
'md5|md5值' => 'require', |
|
'id|信息' => 'require|number', |
|
]; |
|
|
|
protected $scene = [ |
|
'add' => ['type', 'tag', 'pid', 'path', 'md5',], |
|
'edit' => ['type', 'tag', 'pid', 'path', 'md5', 'id',], |
|
]; |
|
}
|
|
|