- <?php
- namespace app\common\base\service;
- abstract class BaseService {
- public function __construct(){
- $this->beforeInit();
- $this->zskkInit();
- $this->afterInit();
- }
- protected function zskkInit() {}
- protected function beforeInit() {}
- protected function afterInit() {}
- }
|