SNotificationModel.php 396 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by 上海互教教育科技有限公司.
  4. * User: 刘红伟
  5. * QQ : 454303753
  6. * Date: 2018/3/12 0012
  7. * Time: 下午 13:46
  8. */
  9. class SNotificationModel extends MyActiveRecord
  10. {
  11. public static function model($className = __CLASS__)
  12. {
  13. return parent::model($className);
  14. }
  15. public function tableName()
  16. {
  17. return 'client_notification';
  18. }
  19. }