12345678910111213141516171819202122232425262728293031 |
- <?php
- declare (strict_types = 1);
- namespace app\event;
- use app\model\express\Kdbird;
- class CloseKdbirdTrace
- {
- public function handle($param = [])
- {
- $kdbird_model = new Kdbird();
- $result = $kdbird_model->modifyStatus(0);
- return $result;
- }
- }
|