finance-pay/app/adminapi/logic/SubMerchantLogic.php

130 lines
3.8 KiB
PHP
Raw Normal View History

2023-11-15 12:02:33 +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;
use app\common\model\SubMerchant;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* SubMerchant逻辑
* Class SubMerchantLogic
* @package app\adminapi\logic
*/
class SubMerchantLogic extends BaseLogic
{
/**
* @notes 添加
* @param array $params
* @return bool
* @author likeadmin
* @date 2023/11/10 09:54
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
SubMerchant::create([
'sub_merchant_name' => $params['sub_merchant_name'],
'sub_mch_id' => $params['sub_mch_id'],
'province' => $params['province'],
'city' => $params['city'],
'area' => $params['area'],
'street' => $params['street'],
'village' => $params['village'],
]);
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/10 09:54
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SubMerchant::where('id', $params['id'])->update([
'sub_merchant_name' => $params['sub_merchant_name'],
'sub_mch_id' => $params['sub_mch_id'],
'province' => $params['province'],
'city' => $params['city'],
'area' => $params['area'],
'street' => $params['street'],
'village' => $params['village'],
]);
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/10 09:54
*/
public static function delete(array $params): bool
{
return SubMerchant::destroy($params['id']);
}
/**
* @notes 获取详情
* @param $params
* @return array
* @author likeadmin
* @date 2023/11/10 09:54
*/
public static function detail($params): array
{
return SubMerchant::findOrEmpty($params['id']) ->withAttr('province',function($value,$data){
return Db::name('geo_province')->where('province_code',$value)->value('province_name');
})
->withAttr('city',function($value,$data){
return Db::name('geo_city')->where('city_code',$value)->value('city_name');
})
->withAttr('area',function($value,$data){
return Db::name('geo_area')->where('area_code',$value)->value('area_name');
})
->withAttr('street',function($value,$data){
return Db::name('geo_street')->where('street_code',$value)->value('street_name');
})
->toArray();
}
}