游戏-游戏奖励权重配置

This commit is contained in:
2026-04-13 16:26:06 +08:00
parent 938d0a60aa
commit 6c94d03ddf
7 changed files with 418 additions and 0 deletions

View File

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