2023-07-15 10:16:32 +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\common\model\recharge;
|
|
|
|
|
|
|
|
|
|
use app\common\enum\PayEnum;
|
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
|
use think\model\concern\SoftDelete;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 充值订单模型
|
|
|
|
|
* Class RechargeOrder
|
|
|
|
|
* @package app\common\model
|
|
|
|
|
*/
|
|
|
|
|
class RechargeOrder extends BaseModel
|
|
|
|
|
{
|
|
|
|
|
use SoftDelete;
|
|
|
|
|
|
|
|
|
|
protected $deleteTime = 'delete_time';
|
|
|
|
|
|
2023-08-28 19:26:10 +08:00
|
|
|
|
public function getExtendAttr($value){
|
|
|
|
|
if($value){
|
|
|
|
|
return json_decode($value, true);
|
|
|
|
|
}else{
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-07-15 10:16:32 +08:00
|
|
|
|
/**
|
|
|
|
|
* @notes 支付方式
|
|
|
|
|
* @param $value
|
|
|
|
|
* @return string|string[]
|
|
|
|
|
* @author 段誉
|
|
|
|
|
* @date 2023/2/23 18:32
|
|
|
|
|
*/
|
|
|
|
|
public function getPayWayTextAttr($value, $data)
|
|
|
|
|
{
|
|
|
|
|
return PayEnum::getPayDesc($data['pay_way']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @notes 支付状态
|
|
|
|
|
* @param $value
|
|
|
|
|
* @return string|string[]
|
|
|
|
|
* @author 段誉
|
|
|
|
|
* @date 2023/2/23 18:32
|
|
|
|
|
*/
|
|
|
|
|
public function getPayStatusTextAttr($value, $data)
|
|
|
|
|
{
|
|
|
|
|
return PayEnum::getPayStatusDesc($data['pay_status']);
|
|
|
|
|
}
|
|
|
|
|
}
|