FileController.php 442 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace api\modules\v1\controllers\common;
  3. use common\traits\FileAction;
  4. use api\controllers\OnAuthController;
  5. /**
  6. * 资源上传控制器
  7. *
  8. * Class FileController
  9. * @package api\modules\v1\controllers
  10. * @property \yii\db\ActiveRecord $modelClass
  11. * @author jianyan74 <751393839@qq.com>
  12. */
  13. class FileController extends OnAuthController
  14. {
  15. use FileAction;
  16. /**
  17. * @var string
  18. */
  19. public $modelClass = '';
  20. }
粤ICP备19079148号