Section.php 766 字节
<?php

namespace app\admin\model\pipes;

use think\Model;


class Section extends Model
{

    

    

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

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

    // 追加属性
    protected $append = [

    ];

    public function network() {
        return $this->belongsTo('app\admin\model\pipes\Network', 'network_id', 'id', [], 'LEFT')->setEagerlyType(0);
    }

    public function route() {
        return $this->belongsTo('app\admin\model\pipes\Route', 'route_id', 'id', [], 'LEFT')->setEagerlyType(0);
    }
    







}