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