suyuan/app/adminapi/logic/land/ProductLogic.php

124 lines
3.5 KiB
PHP
Raw Normal View History

2023-11-25 18:13:50 +08:00
<?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\land;
use app\common\model\land\Product;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* Product逻辑
* Class ProductLogic
* @package app\adminapi\logic\land
*/
class ProductLogic extends BaseLogic
{
/**
* @notes 添加
* @param array $params
* @return bool
* @author likeadmin
* @date 2023/11/25 16:16
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
$product = Product::create([
'user_id' => $params['user_id'],
'code' => $params['code'],
'name' => $params['name'],
'status' => $params['status'],
]);
Db::name('land_product')->insert([
'land_id' => $params['land_id'],
'product_id' => $product['id'],
'create_time' => time(),
'update_time' => time()
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑
* @param array $params
* @return bool
* @author likeadmin
* @date 2023/11/25 16:16
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
Product::where('id', $params['id'])->update([
'user_id' => $params['user_id'],
'code' => $params['code'],
'name' => $params['name'],
'status' => $params['status'],
]);
Db::name('land_product')->where('product_id', $params['id'])->delete();
Db::name('land_product')->insert([
'land_id' => $params['land_id'],
'product_id' => $params['id'],
'create_time' => time(),
'update_time' => time()
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除
* @param array $params
* @return bool
* @author likeadmin
* @date 2023/11/25 16:16
*/
public static function delete(array $params): bool
{
2023-11-27 15:22:18 +08:00
Db::name('land_product')->where('product_id', $params['id'])->delete();
2023-11-25 18:13:50 +08:00
return Product::destroy($params['id']);
}
/**
* @notes 获取详情
* @param $params
* @return array
* @author likeadmin
* @date 2023/11/25 16:16
*/
public static function detail($params): array
{
return Product::findOrEmpty($params['id'])->toArray();
}
}