2026-07-09 13:02:49 +08:00

45 lines
2.2 KiB
Go

package mysql
const (
transactionStatusSucceeded = "succeeded"
bizTypeGiftDebit = "gift_debit"
bizTypeDirectGiftDebit = "direct_gift_debit"
bizTypeRobotGiftDebit = "robot_gift_debit"
bizTypeManualCredit = "manual_credit"
bizTypeTaskReward = "task_reward"
bizTypeLuckyGiftReward = "lucky_gift_reward"
bizTypeWheelReward = "wheel_reward"
bizTypeRoomTurnoverReward = "room_turnover_reward"
bizTypeInviteActivityReward = "invite_activity_reward"
bizTypeAgencyOpeningReward = "agency_opening_reward"
bizTypeCoinSellerTransfer = "coin_seller_transfer"
bizTypeCoinSellerSubTransfer = "coin_seller_sub_transfer"
bizTypeCoinSellerStockPurchase = "coin_seller_stock_purchase"
bizTypeCoinSellerStockDeduction = "coin_seller_stock_deduction"
bizTypeCoinSellerCoinCompensation = "coin_seller_coin_compensation"
bizTypeSalaryExchangeToCoin = "salary_exchange_to_coin"
bizTypeSalaryTransferToCoinSeller = "salary_transfer_to_coin_seller"
bizTypeSalaryWithdrawalFreeze = "salary_withdrawal_freeze"
bizTypeSalaryWithdrawalSettle = "salary_withdrawal_settle"
bizTypeSalaryWithdrawalRelease = "salary_withdrawal_release"
bizTypeGooglePlayRecharge = "google_play_recharge"
bizTypeMifaPayRecharge = "mifapay"
bizTypeV5PayRecharge = "v5pay"
bizTypeUSDTTRC20Recharge = "usdt_trc20"
bizTypeGameDebit = "game_debit"
bizTypeGameCredit = "game_credit"
bizTypeGameRefund = "game_refund"
bizTypeGameReverse = "game_reverse"
bizTypeHostSalarySettlement = "host_salary_settlement"
bizTypeCPBreakupFee = "cp_breakup_fee"
bizTypeWheelDrawDebit = "wheel_draw_debit"
outboxStatusPending = "pending"
outboxStatusDelivering = "delivering"
outboxStatusDelivered = "delivered"
outboxStatusRetryable = "retryable"
outboxStatusFailed = "failed"
giftWallChargeAssetMixed = "MIXED"
giftChargeSourceCoin = "coin"
giftChargeSourceBag = "bag"
)