BusinessTeacherMoveLog.php 357 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 业务库教师模型类
  4. * @author jiangfei
  5. * @date 2015-09-17 15:00:00
  6. * @company 上海风车教育有限公司.
  7. */
  8. class BusinessTeacherMoveLog extends BusinessActiveRecord{
  9. public static function model($className = __CLASS__){
  10. return parent::model($className);
  11. }
  12. public function tableName(){
  13. return "teacher_move_log";
  14. }
  15. }