upd:调整菜单

This commit is contained in:
2025-05-01 11:42:05 +08:00
parent 0304dc7494
commit 20a6248fb6
47 changed files with 112 additions and 112 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace app\admin\validate\zy\game;
use think\Validate;
class Participant extends Validate
{
/**
* 验证规则
*/
protected $rule = [
];
/**
* 提示消息
*/
protected $message = [
];
/**
* 验证场景
*/
protected $scene = [
'add' => [],
'edit' => [],
];
}