Student.php 264 B

12345678910111213141516171819
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. /**
  5. * Student
  6. */
  7. class Student extends Model
  8. {
  9. // 表名
  10. protected $name = 'student';
  11. // 自动写入时间戳字段
  12. protected $autoWriteTimestamp = true;
  13. protected $updateTime = false;
  14. }