| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?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 app\common\model\dict\DictData;
- use app\common\model\works\ServiceWork;
- use think\model\concern\SoftDelete;
- /**
- * 订单模型
- * Class RechargeOrder
- * @package app\common\model
- */
- class RechargeOrder extends BaseModel
- {
- use SoftDelete;
- protected $deleteTime = 'delete_time';
- /**
- * @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']);
- }
- public function serviceWork()
- {
- return $this->belongsTo(ServiceWork::class, 'work_id', 'id');
- }
- public function orderGoods()
- {
- return $this->hasMany(OrderGoods::class, 'sn', 'sn');
- }
- public function getPaymentTypeTextAttr($value, $data)
- {
- $payment_type_data = DictData::where('type_value','payment_type')->column('name','value');
- return $payment_type_data[$data['payment_type']];
- }
- }
|