mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 06:30:49 +00:00
22 lines
367 B
PHP
22 lines
367 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class GoodsType extends Model
|
|
{
|
|
use SoftDeletes;
|
|
/**
|
|
* 数组中的属性会被隐藏。
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $hidden = ['deleted_at'];
|
|
|
|
public function parentType()
|
|
{
|
|
return $this->hasOne(GoodsType::class, 'id', 'parent_id');
|
|
}
|
|
}
|