1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace app\services\order;
- use app\dao\order\OtherOrderStatusDao;
- use app\services\BaseServices;
- class OtherOrderStatusServices extends BaseServices
- {
-
- public function __construct(OtherOrderStatusDao $dao)
- {
- $this->dao = $dao;
- }
-
- public function getStatusList(int $id)
- {
- return $this->dao->getStatusList(['oid' => $id], 0, 0);
- }
- }
|