You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.6 KiB
68 lines
1.6 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Niucloud-admin 企业快速开发的saas管理平台
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网址:https://www.niucloud-admin.com
|
|
// +----------------------------------------------------------------------
|
|
// | niucloud团队 版权所有 开源版本可自由商用
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Niucloud Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\model\pay;
|
|
|
|
use app\dict\common\ChannelDict;
|
|
use app\dict\pay\PayDict;
|
|
use core\base\BaseModel;
|
|
|
|
/**
|
|
* 支付渠道模型
|
|
* Class Order
|
|
* @package app\model\order
|
|
*/
|
|
class PayChannel extends BaseModel
|
|
{
|
|
/**
|
|
* 数据表主键
|
|
* @var string
|
|
*/
|
|
protected $pk = 'id';
|
|
|
|
/**
|
|
* 模型名称
|
|
* @var string
|
|
*/
|
|
protected $name = 'pay_channel';
|
|
|
|
|
|
protected $json = ['config'];
|
|
|
|
protected $jsonAssoc = true;
|
|
|
|
|
|
/**
|
|
* 支付方式字段转化
|
|
* @param $value
|
|
* @param $data
|
|
* @return mixed
|
|
*/
|
|
public function getTypeNameAttr($value, $data)
|
|
{
|
|
if (empty($data['type'])) return '';
|
|
$temp = PayDict::getPayType()[$data['type']] ?? [];
|
|
return $temp['name'] ?? '';
|
|
}
|
|
|
|
/**
|
|
* 渠道字段转化
|
|
* @param $value
|
|
* @param $data
|
|
* @return mixed
|
|
*/
|
|
public function getChannelNameAttr($value, $data)
|
|
{
|
|
if (empty($data['channel'])) return '';
|
|
return ChannelDict::getType()[$data['channel']] ?? '';
|
|
}
|
|
|
|
}
|
|
|