酒店预订平台
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.
 
 
 
 
 
 

20 lines
263 B

  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. /**
  5. * Created by PhpStorm.
  6. * User: nizongfeng
  7. * Date: 2023/2/7
  8. * Time: 11:01
  9. */
  10. class File extends Model
  11. {
  12. // 表名
  13. protected $name = 'file';
  14. // 追加属性
  15. protected $append = [
  16. ];
  17. }