FarmlandShipping.php 652 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace app\common\model;
  3. class FarmlandShipping extends BaseModel
  4. {
  5. /**
  6. * @var string
  7. */
  8. protected $name = 'farmland_shipping';
  9. /**
  10. * @var array
  11. */
  12. protected $auto = [];
  13. /**
  14. * @var array
  15. */
  16. protected $insert = ['created_at','updated_at'];
  17. /**
  18. * @var array
  19. */
  20. protected $update = ['updated_at'];
  21. /**
  22. *
  23. * @author 许祖兴 < zuxing.xu@lettered.cn>
  24. * @date 2021/1/25 17:22
  25. *
  26. * @return mixed
  27. */
  28. public function order()
  29. {
  30. return $this->belongsTo('FarmlandOrder','order_id','id');
  31. }
  32. }