超管系统增加机器人管理

This commit is contained in:
meimei
2025-04-11 15:37:22 +08:00
parent 32a565ef81
commit bc16eebd9e
10 changed files with 456 additions and 1 deletions

View File

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