ProductionComment.php 791 字节
<?php

namespace app\admin\model;

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

class ProductionComment extends Model
{

    use SoftDelete;

    

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

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

    // 追加属性
    protected $append = [

    ];




    /**
     * 关联用户表
     */
    public function User(){
        return $this->belongsTo('user','user_id','id');
    }


    /**
     * 关联用户表
     */
    public function Production(){
        return $this->belongsTo('production','production_id','id');
    }


}