add:关系互动

- 入会申请
 - 好友申请
 - 报名邀请
 - 投诉举报
 - 好友关系
This commit is contained in:
2025-05-02 11:32:40 +08:00
parent 6b3c4782a1
commit 7101db7e5c
24 changed files with 1125 additions and 0 deletions

View File

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