feat(log): add logging for balance, gift amount, and commission adjustments

This commit is contained in:
Chang lue Tsen
2025-09-05 11:00:19 -04:00
parent 1d878592ed
commit 0199dc7fa2
2 changed files with 84 additions and 3 deletions
+3
View File
@@ -40,10 +40,13 @@ const (
BalanceTypeWithdraw uint16 = 322 // Withdraw
BalanceTypePayment uint16 = 323 // Payment
BalanceTypeRefund uint16 = 324 // Refund
BalanceTypeAdjust uint16 = 326 // Admin Adjust
BalanceTypeReward uint16 = 325 // Reward
CommissionTypePurchase uint16 = 331 // Purchase
CommissionTypeRenewal uint16 = 332 // Renewal
CommissionTypeRefund uint16 = 333 // Refund
commissionTypeWithdraw uint16 = 334 // withdraw
CommissionTypeAdjust uint16 = 335 // Admin Adjust
GiftTypeIncrease uint16 = 341 // Increase
GiftTypeReduce uint16 = 342 // Reduce
)