15090180611 72132ff273 1,机构申请接口和机构状态查询
2,站内信基功能编辑完成
3,用户授权接口和后台(进行中)
4,课程大搜索列表接口
2024-11-15 18:26:03 +08:00

28 lines
359 B
PHP

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