ConstructionStep.php 197 B

12345678910111213
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class ConstructionStep extends Model
  5. {
  6. public function record()
  7. {
  8. return $this->hasMany(ConstructionRecord::class, 'step_id');
  9. }
  10. }