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.

13 lines
325 B

  1. <?php
  2. namespace App\Model\v3;
  3. use App\Model\Model;
  4. use Hyperf\Database\Model\Relations\BelongsTo;
  5. class SfExpressOrder extends Model
  6. {
  7. protected $table = 'lanzu_sf_express_orders';
  8. public function orderMain(): BelongsTo
  9. {
  10. return $this->belongsTo(OrderMain::class, 'shop_order_id', 'global_order_id');
  11. }
  12. }