refactor(service/oa):调整出舱状态常量定义

- 将 StatusEnabled 和 StatusDisabled 的值互换
-确保 StatusEnabled 的值为 1,StatusDisabled 的值为 2
This commit is contained in:
守护自己的云 2025-04-17 10:39:32 +08:00
parent 38a35baac8
commit eb4a4b122b

View File

@ -2,6 +2,6 @@ package oa
type Status = int64 // 出舱状态
const (
StatusDisabled Status = 1 // 启用
StatusEnabled Status = 2 // 禁用
StatusEnabled Status = 1 // 启用
StatusDisabled Status = 2 // 禁用
)