提交其他文件

This commit is contained in:
2026-03-14 16:20:49 +08:00
parent a227deaecd
commit 0a19b334f8
1385 changed files with 73568 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\Wxcode;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* Wxcode逻辑
* Class WxcodeLogic
* @package app\adminapi\logic
*/
class WxcodeLogic extends BaseLogic
{
/**
* @notes 添加
* @param array $params
* @return bool
* @author likeadmin
* @date 2026/03/06 13:28
*/
public static function add($params,$return)
{
Db::startTrans();
try {
Wxcode::create([
'url' => $return,
'name'=>$params['name'],
'type' => $params['type'],
'dtime'=>date("Y-m-d H:i:s")
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑
* @param array $params
* @return bool
* @author likeadmin
* @date 2026/03/06 13:28
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
Wxcode::where('id', $params['id'])->update([
// 'url' => $params['url'],
'name' => $params['name'],
'type' => $params['type'],
'status' => $params['status']
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除
* @param array $params
* @return bool
* @author likeadmin
* @date 2026/03/06 13:28
*/
public static function delete(array $params): bool
{
return Wxcode::destroy($params['id']);
}
/**
* @notes 获取详情
* @param $params
* @return array
* @author likeadmin
* @date 2026/03/06 13:28
*/
public static function detail($params): array
{
return Wxcode::findOrEmpty($params['id'])->toArray();
}
}