feat: 在 Withdraw 模型中添加 accumulated 和 fee 属性以支持提现积分和手续费

This commit is contained in:
lingling 2025-03-13 20:37:53 +08:00
parent c6fadb28fa
commit 0c5eb38d48
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,8 @@ use support\Model;
* @property integer $status 1申请中 2 已到账 3已驳回 4等待银行打款 5支付失败
* @property integer $gift_amount 赠送积分
* @property integer $createtime 创建时间(时间戳)
* @property integer $accumulated 提现积分
* @property integer $fee 提现手续费
*/
class Withdraw extends Model
{
@ -38,5 +40,7 @@ class Withdraw extends Model
'username',
'status_text',
'order_number',
'accumulated',
'fee'
];
}