Department.php 164 B

123456789101112131415
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. * 部门模型
  6. */
  7. class Department extends Model
  8. {
  9. // 表名
  10. protected $name = 'department';
  11. }