This commit is contained in:
2025-03-28 22:08:54 +08:00
parent fc120b02c1
commit 632492eee7
17 changed files with 680 additions and 1 deletions

View File

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