新增发起提现接口

This commit is contained in:
2023-04-08 10:16:57 +08:00
parent ac5467b951
commit cde4b9b664
6 changed files with 222 additions and 14 deletions
+9 -5
View File
@@ -40,11 +40,6 @@ class DoctorWithdrawal extends Model
*/
protected array $fillable = ['withdrawal_id', 'doctor_id', 'bank_id', 'account_name', 'bank_card_code', 'bank_card_code_four', 'applied_withdrawal_amount', 'actual_withdrawal_amount', 'income_tax', 'examine_status', 'examine_fail_reason', 'examine_time', 'created_at', 'updated_at'];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['withdrawal_id' => 'integer', 'doctor_id' => 'integer', 'bank_id' => 'integer', 'examine_status' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime'];
protected string $primaryKey = "withdrawal_id";
/**
@@ -105,4 +100,13 @@ class DoctorWithdrawal extends Model
return $data;
}
/**
* 新增
* @param array $data
* @return DoctorWithdrawal|\Hyperf\Database\Model\Model
*/
public static function addDoctorWithdrawal(array $data): \Hyperf\Database\Model\Model|DoctorWithdrawal
{
return self::create($data);
}
}