OrderLogistics.php 265 B

1234567891011121314151617
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. * @property LogisticsCompany com
  6. * @property string trans_no
  7. */
  8. class OrderLogistics extends Model
  9. {
  10. public function com(){
  11. return $this->belongsTo(LogisticsCompany::class,'com_id');
  12. }
  13. }