add:标签,球馆

This commit is contained in:
2025-04-29 15:55:35 +08:00
parent 32612f3103
commit 0bd7421371
32 changed files with 2422 additions and 2 deletions

View File

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

View File

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