Service.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\goods;
  13. use app\common\model\BaseModel;
  14. /**
  15. * 商品服务与承诺模型
  16. * Class Service
  17. */
  18. class Service extends BaseModel
  19. {
  20. // 定义表名
  21. protected $name = 'goods_service';
  22. // 定义主键
  23. protected $pk = 'service_id';
  24. /**
  25. * 帮助详情
  26. * @param int $helpId
  27. * @return null|static
  28. */
  29. public static function detail(int $helpId)
  30. {
  31. return self::get($helpId);
  32. }
  33. }