Shipper.php 418 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace app\admin\controller\shop;
  3. use app\common\controller\Backend;
  4. /**
  5. * 快递公司
  6. *
  7. * @icon fa fa-circle-o
  8. */
  9. class Shipper extends Backend
  10. {
  11. /**
  12. * Shipper模型对象
  13. * @var \app\admin\model\shop\Shipper
  14. */
  15. protected $model = null;
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. $this->model = new \app\admin\model\shop\Shipper;
  20. }
  21. }