添加接口

This commit is contained in:
2025-03-28 15:53:33 +08:00
parent f5b2dc86d1
commit 012d3e5ee8
2 changed files with 36 additions and 14 deletions

View File

@@ -68,3 +68,9 @@ const (
ExchangeSettlementTypeMaster ExchangeSettlementType = 1 // 总票
ExchangeSettlementTypeSub ExchangeSettlementType = 2 // 分票
)
type Flag = int64 // 状态
const (
FlagTrue Flag = 1 // 是
FlagFalse Flag = 2 // 否
)