1.提交缺失的东西

This commit is contained in:
2025-06-08 17:10:55 +08:00
parent 38b429ec3d
commit 88b326b1b8
5 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,112 @@
<?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\adminapi\logic;
use app\common\model\Device;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* Device逻辑
* Class DeviceLogic
* @package app\adminapi\logic
*/
class DeviceLogic extends BaseLogic
{
/**
* @notes 添加
* @param array $params
* @return bool
* @author likeadmin
* @date 2025/06/08 16:46
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
Device::create([
'name' => $params['name'],
'model' => $params['model'],
'state' => $params['state'],
'dtime' => $params['dtime']
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑
* @param array $params
* @return bool
* @author likeadmin
* @date 2025/06/08 16:46
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
Device::where('id', $params['id'])->update([
'name' => $params['name'],
'model' => $params['model'],
'state' => $params['state'],
'dtime' => $params['dtime']
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除
* @param array $params
* @return bool
* @author likeadmin
* @date 2025/06/08 16:46
*/
public static function delete(array $params): bool
{
return Device::destroy($params['id']);
}
/**
* @notes 获取详情
* @param $params
* @return array
* @author likeadmin
* @date 2025/06/08 16:46
*/
public static function detail($params): array
{
return Device::findOrEmpty($params['id'])->toArray();
}
}