'话费充值', 2 => '电费充值', 3 => '燃气充值' ]; return $typeMap[$this->type] ?? '未知'; } /** * 获取状态文本 */ public function getStatusTextAttribute() { return $this->status == 1 ? '有效' : '无效'; } /** * 获取折扣 */ public function getDiscountAttribute($value) { return floatval($value); } /** * 获取实付金额 */ public function getPayMoneyAttribute() { if ($this->discount > 0) { return round($this->money * $this->discount / 100, 2); } return $this->money; } }