123456789101112131415161718192021 |
- <?php
- /**
- * Created by 上海互教教育科技有限公司.
- * User: 刘红伟
- * QQ : 454303753
- * Date: 2018/3/12 0012
- * Time: 下午 13:46
- */
- class SNotificationModel extends MyActiveRecord
- {
- public static function model($className = __CLASS__)
- {
- return parent::model($className);
- }
- public function tableName()
- {
- return 'client_notification';
- }
- }
|