1234567891011121314151617181920 |
- <?php
- declare (strict_types = 1);
- namespace app\admin\listener;
- use app\admin\model\OrderOutChild;
- use app\model\FhdChild;
- class OutChildSend
- {
- /**
- * 事件监听处理
- *
- * @return mixed
- */
- public function handle($event)
- {
- $child = OrderOutChild::whereIn("outChildCode",$event)->hidden(["id"])->select()->toArray();
- (new FhdChild())->SaveAll($child);
- }
- }
|