OrderShipService.php 341 B

1234567891011121314151617
  1. <?php
  2. namespace app\common\Service\Order;
  3. use app\common\model\Shipper;
  4. class OrderShipService
  5. {
  6. /**
  7. * 获取快递公司列表
  8. * @return bool|string|\PDOStatement|\think\Collection
  9. */
  10. public static function getExpressCompany(){
  11. $list = Shipper::order('id desc')->select();
  12. return $list;
  13. }
  14. }