2025-02-27 09:55:33 +08:00

59 lines
1.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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