| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /******************************************************************************************************************
- * Author: king -- LiBaoJia
- * Date: 11/10/21 9:50 AM
- * Email: livsyitian@163.com
- * QQ: 995265288
- * IDE: PhpStorm
- * User: www.yunzshop.com www.yunzshop.com
- * Company: 广州市芸众信息科技有限公司
- * Profile: 专注移动电子商务生态系统打造,拥有芸众社交电商系统、区块链数字资产管理系统、供应链管理系统、电子合同等产品/服务
- ******************************************************************************************************************/
- namespace app\common\events\finance;
- use app\common\events\Event;
- class PointChangeCreatingEvent extends Event
- {
- /**
- * @var array
- */
- public $changeData;
- public $is_change;
- public function __construct($changeData)
- {
- $this->changeData = $changeData;
- $this->is_change = 1;
- }
- public function changeData()
- {
- return $this->changeData;
- }
- }
|