1234567891011121314151617 |
- <?php
- namespace app\common\model;
- use think\Model;
- /**
- * @property LogisticsCompany com
- * @property string trans_no
- */
- class OrderLogistics extends Model
- {
- public function com(){
- return $this->belongsTo(LogisticsCompany::class,'com_id');
- }
- }
|