123456789101112131415161718192021 |
- <?php
- namespace app\zskk\model;
- use app\common\model\ZskkModel;
- /**
- * ZskkTest模型
- * @property int $id ID
- * @property string $a 测试参数a
- * @property string $b 测试参数b
- * @property string $c 测试参数c
- */
- class TestInspectionRecognition extends ZskkModel
- {
-
- protected array $encrypts = [];
- protected array $decrypts = [];
- }
|