EnterpriseNews.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2021 https://www.yiovo.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
  8. // +----------------------------------------------------------------------
  9. // | Author: 萤火科技 <admin@yiovo.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types=1);
  12. namespace app\common\model\enterprise;
  13. use app\common\model\BaseModel;
  14. use app\common\model\UploadFile;
  15. /**
  16. * 商家后台菜单模型
  17. * Class Menu
  18. * @package app\common\model\admin
  19. */
  20. class EnterpriseNews extends BaseModel
  21. {
  22. // 定义表名
  23. protected $name = 'enterprise_news';
  24. // 定义表主键
  25. protected $pk = 'id';
  26. /**
  27. * 关联文件库
  28. * @return \think\model\relation\BelongsTo
  29. */
  30. public function file()
  31. {
  32. return $this->belongsTo(UploadFile::class, 'thumb_img', 'file_id');
  33. }
  34. }