You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SystemFile.php 419B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace app\model\system\log;
  3. use crmeb\basic\BaseModel;
  4. use crmeb\traits\ModelTrait;
  5. /**
  6. * 文件校验模型
  7. * Class SystemFile
  8. * @package app\model\system\log
  9. */
  10. class SystemFile extends BaseModel
  11. {
  12. use ModelTrait;
  13. /**
  14. * 数据表主键
  15. * @var string
  16. */
  17. protected $pk = 'id';
  18. /**
  19. * 模型名称
  20. * @var string
  21. */
  22. protected $name = 'system_file';
  23. }