1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- // +----------------------------------------------------------------------
- // | Niucloud-admin 企业快速开发的saas管理平台
- // +----------------------------------------------------------------------
- // | 官方网址:https://www.niucloud.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']] ?? '';
- }
- }
|