TaoLer/app/common/model/Message.php

28 lines
589 B
PHP
Raw Normal View History

2020-03-28 21:41:07 +08:00
<?php
namespace app\common\model;
use think\Model;
use think\model\concern\SoftDelete;
class Message extends Model
{
2020-04-05 12:52:29 +08:00
use SoftDelete;
2020-03-28 21:41:07 +08:00
protected $pk = 'id'; //主键
protected $autoWriteTimestamp = true; //开启自动时间戳
protected $createTime = 'create_time';
protected $updateTime = 'update_time';
2020-04-05 12:52:29 +08:00
protected $deleteTime = 'delete_time';
2020-03-28 21:41:07 +08:00
//用户关联评论
public function user()
{
return $this->hasMany('User','user_id','id');
}
2020-03-31 23:01:00 +08:00
//发件箱关联收件箱
public function messageto()
{
return $this->hasMany('MessageTo','message_id','id');
}
2020-03-28 21:41:07 +08:00
}