59 lines
1.8 KiB
PHP
59 lines
1.8 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\common\model\works\rcbg;
|
||
|
||
|
||
use app\common\model\BaseModel;
|
||
use think\model\concern\SoftDelete;
|
||
|
||
|
||
/**
|
||
* 日程安排模型
|
||
* Class OaPlan
|
||
* @package app\common\model\works\rcbg
|
||
*/
|
||
class OaPlan extends BaseModel
|
||
{
|
||
use SoftDelete;
|
||
protected $name = 'oa_plan';
|
||
protected $deleteTime = 'delete_time';
|
||
|
||
public function getStartTimeAttr($value): string
|
||
{
|
||
return !empty($value) ? date('Y-m-d H:i',$value) : '';
|
||
}
|
||
|
||
public function getEndTimeAttr($value): string
|
||
{
|
||
return !empty($value) ? date('Y-m-d H:i',$value) : '';
|
||
}
|
||
|
||
public function getRemindTimeAttr($value): string
|
||
{
|
||
return !empty($value) ? date('Y-m-d H:i',$value) : '';
|
||
}
|
||
|
||
public function getTypeTextAttr($value,$data): string
|
||
{
|
||
$arr = [0=>'无优先级',1=>'不重要',2=>'次要',3=>'重要',4=>'紧急'];
|
||
return $arr[$data['type']];
|
||
}
|
||
|
||
public function getRemindTypeTextAttr($value,$data): string
|
||
{
|
||
$arr = [0=>'不提醒',1=>'提前5分钟',2=>'提前15分钟',3=>'提前30分钟',4=>'提前1小时',5=>'提前2小时',6=>'提前1天'];
|
||
return $arr[$data['remind_type']];
|
||
}
|
||
} |