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.
42 lines
973 B
42 lines
973 B
<?php
|
|
|
|
namespace addons\qingdong\model;
|
|
|
|
use think\Model;
|
|
use traits\model\SoftDelete;
|
|
|
|
/**
|
|
*评论表
|
|
*/
|
|
class Comment Extends Model {
|
|
use SoftDelete;
|
|
|
|
|
|
const DAILY_TYPE = 5;//工作报告
|
|
// 表名,不含前缀
|
|
protected $name = 'qingdong_comment';
|
|
// 开启自动写入时间戳字段
|
|
protected $autoWriteTimestamp = 'int';
|
|
// 定义时间戳字段名
|
|
protected $createTime = 'createtime';
|
|
protected $updateTime = 'updatetime';
|
|
protected $deleteTime = 'deletetime';
|
|
|
|
|
|
public function staff() {
|
|
return $this->belongsTo(Staff::class, 'staff_id', 'id')->field('id,name,img,post');
|
|
}
|
|
|
|
|
|
public function getCreatetimeAttr($value) {
|
|
return date('Y-m-d H:i', $value);
|
|
}
|
|
//跟进
|
|
public function record() {
|
|
return $this->hasOne(Record::class, 'id', 'relation_id')->field('id,content');
|
|
}
|
|
//工作报告
|
|
public function daily() {
|
|
return $this->hasOne(Daily::class, 'id', 'relation_id')->field('id,type');
|
|
}
|
|
}
|
|
|