ClientScanSpeedLog.php 385 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * 考试管理模型类
  4. * @author jiangfei
  5. * @date 2015-09-09 19:30:00
  6. * @company 上海风车教育有限公司.
  7. */
  8. // class Exam extends CActiveRecord{
  9. class ClientScanSpeedLog extends MyActiveRecord{
  10. public static function model($className = __CLASS__){
  11. return parent::model($className);
  12. }
  13. public function tableName(){
  14. return 'client_scan_seed_log';
  15. }
  16. }