SchedulePeriod.php 415 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: zilongs
  5. * Date: 20-9-30
  6. * Time: 下午2:51
  7. */
  8. namespace App\Models;
  9. class SchedulePeriod extends BaseModel
  10. {
  11. public function organization()
  12. {
  13. return $this->belongsTo(Organization::class);
  14. }
  15. public function timePeriod()
  16. {
  17. return $this->belongsTo(TimePeriod::class)->select(['id', 'start_time_period', 'end_time_period']);
  18. }
  19. }