CollegeTeacher.php 300 B

123456789101112131415161718
  1. <?php
  2. namespace app\model;
  3. use support\Model;
  4. class CollegeTeacher extends Model
  5. {
  6. public $table = 'college_teacher';
  7. public $primaryKey = 'teacher_id';
  8. public $dateFormat = 'U';
  9. public const CREATED_AT = 'teacher_addTime';
  10. public const UPDATED_AT = 'teacher_updateTime';
  11. }