1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <?php
|
| /**
| * link: http://www.zjhejiang.com/
| * copyright: Copyright (c) 2020 浙江禾匠信息科技有限公司
| * author: xay
| */
|
| namespace app\events;
|
| use yii\base\Event;
|
| class GoodsStatusEvent extends Event
| {
| public $id;
| public $status_after;
| }
|
|