Files
sam-api/app/Models/Qualitys/LotSale.php
2025-08-21 09:50:15 +09:00

22 lines
330 B
PHP

<?php
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');
}
}