SStudentBindCodeLog.php 278 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @author: CeeFee
  4. * @description: 考试
  5. */
  6. class SStudentBindCodeLog extends MyActiveRecord
  7. {
  8. public static function model($className = __CLASS__)
  9. {
  10. return parent::model($className);
  11. }
  12. public function tableName()
  13. {
  14. return 'student_bind_code_log';
  15. }
  16. }