问题修复

This commit is contained in:
2024-10-23 11:56:33 +08:00
parent b3676f6b2f
commit 206ed11cec
7 changed files with 37 additions and 17 deletions

View File

@@ -51,3 +51,9 @@ const (
ExportTypeExchangeSettlement = "exchangeSettlement" // 结汇导出
ExportTypeAccounting = "accounting" // 做账导出
)
type BanFlag = int64 // 出舱状态
const (
BanFlagDisabled BanFlag = 1 // 禁用
BanFlagEnabled BanFlag = 2 // 可用
)