Files
webman-buildadmin-mall/app/admin/validate/mall/Player.php
2026-03-18 17:19:03 +08:00

32 lines
388 B
PHP

<?php
namespace app\admin\validate\mall;
use think\Validate;
class Player extends Validate
{
protected $failException = true;
/**
* 验证规则
*/
protected $rule = [
];
/**
* 提示消息
*/
protected $message = [
];
/**
* 验证场景
*/
protected $scene = [
'add' => [],
'edit' => [],
];
}