| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?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');
- }
- }
|