Goods.php 755 字节
<?php

namespace app\admin\model;

use think\Model;
use traits\model\SoftDelete;

class Goods extends Model
{

    use SoftDelete;

    

    // 表名
    protected $name = 'goods';
    
    // 自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';

    // 定义时间戳字段名
    protected $createTime = 'createtime';
    protected $updateTime = 'updatetime';
    protected $deleteTime = 'deletetime';

    // 追加属性
    protected $append = [

    ];
    

    







    public function btype()
    {
        return $this->belongsTo('Btype', 't_id', 'id', [], 'LEFT')->setEagerlyType(0);
    }

    public function gtype()
    {
        return $this->belongsTo('Gtype', 't_id', 'id', [], 'LEFT')->setEagerlyType(0);
    }
}