| 12345678910111213141516171819202122232425 |
- package constant
- // 资产充提 转账
- const (
- _ = iota + 100
- BsAssetDeposit // 充值
- BsAssetWithdrawApply // 提现申请冻结
- BsAssetWithdrawSuccess // 提现成功扣除
- BsAssetWithdrawFail // 提现失败退回
- BsRedPacketSend // 发红包扣款
- BsRedPacketGrab // 抢红包收入
- BsRedPacketRefund // 红包退款
- )
- var AssetBsMap = map[int]string{
- BsAssetDeposit: "充值",
- BsAssetWithdrawApply: "提现申请冻结",
- BsAssetWithdrawSuccess: "提现成功扣除",
- BsAssetWithdrawFail: "提现失败解冻",
- BsRedPacketSend: "发红包扣款",
- BsRedPacketGrab: "抢红包收入",
- BsRedPacketRefund: "红包退款",
- }
|