Department.php 268 B

123456789101112131415161718
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Department extends Model{
  5. protected $table = 'cp_department';
  6. protected $autoWriteTimestamp = true;
  7. public function position(){
  8. return $this->hasMany('Position', 'did', 'id');
  9. }
  10. }