ExportLog.php 246 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. namespace app\model;
  4. use think\Model;
  5. /**
  6. * @mixin \think\Model
  7. */
  8. class ExportLog extends Model
  9. {
  10. public function employee()
  11. {
  12. return $this->belongsTo(Employee::class, 'employee_id');
  13. }
  14. }