Files
webman-buildadmin/app/common/validate/GameUser.php
2026-04-01 15:51:25 +08:00

32 lines
386 B
PHP

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