You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
namespace App\models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ProjectModel extends Model
|
|
{
|
|
const STATUS_ON = 1;
|
|
//指定表名
|
|
protected $table = 'project_model';
|
|
|
|
//定义功能分类表的关系:一对一
|
|
public function FunctypeFid()
|
|
{
|
|
return $this->hasOne('App\models\ProjectFunctype', 'id', 'fid');
|
|
}
|
|
|
|
}
|