OrderLogistics.php 195 B

1234567891011121314
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class OrderLogistics extends Model
  5. {
  6. public function com(){
  7. return $this->belongsTo(LogisticsCompany::class,'com_id');
  8. }
  9. }