12345678910111213141516171819 |
- <?php
- /**
- * @author: CeeFee
- * @description: 考试
- */
- class SStudentBindCodeLog extends MyActiveRecord
- {
- public static function model($className = __CLASS__)
- {
- return parent::model($className);
- }
-
- public function tableName()
- {
- return 'student_bind_code_log';
- }
- }
|