123456789101112131415161718192021222324252627 |
- <?php
- namespace app\admin\validate\training;
- use think\Validate;
- class TrainingInfo extends Validate
- {
-
- protected $rule = [
- ];
-
- protected $message = [
- ];
-
- protected $scene = [
- 'add' => [],
- 'edit' => [],
- ];
-
- }
|