Files
sam-api/app/Models/Qualitys/LotSale.php

21 lines
329 B
PHP
Raw Normal View History

<?php
2025-07-29 13:00:25 +09:00
namespace App\Models\Qualitys;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* @mixin IdeHelperLotSale
*/
class LotSale extends Model
{
use SoftDeletes;
// 로트 정보
public function lot()
{
return $this->belongsTo(Lot::class, 'lot_id');
}
}