lihaiMiddleOffice/app/oa/logic/works/xzgl/OaMeetingCateLogic.php
2025-02-27 09:55:33 +08:00

110 lines
2.9 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\oa\logic\works\xzgl;
use app\common\model\works\xzgl\OaMeetingCate;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 会议室管理逻辑
* Class OaMeetingCateLogic
* @package app\adminapi\logic\works\xzgl
*/
class OaMeetingCateLogic extends BaseLogic
{
/**
* @notes 添加会议室管理
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/05/22 14:24
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
OaMeetingCate::create([
'title' => $params['title'],
'status' => $params['status'] ?? 1
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑会议室管理
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/05/22 14:24
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
OaMeetingCate::where('id', $params['id'])->update([
'title' => $params['title'],
'status' => $params['status'] ?? 1
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除会议室管理
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/05/22 14:24
*/
public static function delete(array $params): bool
{
return OaMeetingCate::destroy($params['id']);
}
/**
* @notes 获取会议室管理详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/05/22 14:24
*/
public static function detail($params): array
{
$data = OaMeetingCate::findOrEmpty($params['id']);
$data['status_text'] = $data->status_text;
return $data->toArray();
}
}