SystemFileInfoDao.php 367 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\dao\system\log;
  3. use app\dao\BaseDao;
  4. use app\model\system\log\SystemFileInfo;
  5. /**
  6. * @author 吴汐
  7. * @email 442384644@qq.com
  8. * @date 2023/04/07
  9. */
  10. class SystemFileInfoDao extends BaseDao
  11. {
  12. /**
  13. * 设置模型
  14. * @return string
  15. */
  16. protected function setModel(): string
  17. {
  18. return SystemFileInfo::class;
  19. }
  20. }