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.
31 lines
707 B
31 lines
707 B
<?php
|
|
|
|
namespace addons\qingdong\model;
|
|
|
|
use think\Exception;
|
|
use think\Model;
|
|
|
|
/**
|
|
*工作报告
|
|
*/
|
|
class DailyRead Extends Model {
|
|
// 表名,不含前缀
|
|
protected $name = 'qingdong_daily_read';
|
|
// 开启自动写入时间戳字段
|
|
protected $autoWriteTimestamp = 'int';
|
|
// 定义时间戳字段名
|
|
protected $createTime = 'createtime';
|
|
protected $updateTime = 'updatetime';
|
|
|
|
|
|
//添加阅读记录
|
|
public static function addRead($daily_id, $staff_id) {
|
|
return self::create(['daily_id' => $daily_id, 'staff_id' => $staff_id]);
|
|
}
|
|
|
|
//获取员工
|
|
public function staff() {
|
|
return $this->hasOne(Staff::class, 'id', 'staff_id')->field('id,name,img,department_id');
|
|
}
|
|
|
|
}
|
|
|