Student.php 148 B

123456789101112
  1. <?php
  2. namespace app\admin\model\user;
  3. use think\Model;
  4. class Student extends Model
  5. {
  6. // 表名
  7. protected $table = 'user_student';
  8. }