截流自动化的商城平台
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.

ShopSettlement.php 357B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\common\model\shop;
  3. use think\Model;
  4. /**
  5. * 商家结算模型
  6. * Class ShopSettlement
  7. * @package app\common\model\shop
  8. */
  9. class ShopSettlement extends Model
  10. {
  11. /**
  12. * @Notes: 关联商家模型
  13. * @Author: 张无忌
  14. */
  15. public function shop()
  16. {
  17. return $this->hasOne('Shop', 'id', 'shop_id');
  18. }
  19. }