20 lines
322 B
PHP
20 lines
322 B
PHP
<?php
|
|
namespace common\handlers;
|
|
|
|
use common\core\BaseModel;
|
|
use common\events\PrescriptionEvent;
|
|
|
|
/**
|
|
* @property PrescriptionEvent $event
|
|
*/
|
|
abstract class BasePrescriptionHandler extends BaseModel
|
|
{
|
|
public $event;
|
|
|
|
/**
|
|
* @return mixed
|
|
* 事件处理
|
|
*/
|
|
abstract public function handle();
|
|
}
|