14 lines
354 B
Go
Raw Permalink Normal View History

2025-07-19 16:49:35 +08:00
// Package consts
// @Link https://github.com/bufanyun/hotgo
// @Copyright Copyright (c) 2023 HotGo CLI
// @Author Ms <133814250@qq.com>
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
package consts
// 提现状态
const (
CashStatusWait = 1 // 处理中
CashStatusOk = 2 // 提现成功
CashStatusFail = 3 // 提现异常
)