refactor(service/oa):调整出舱状态常量定义
- 将 StatusEnabled 和 StatusDisabled 的值互换 -确保 StatusEnabled 的值为 1,StatusDisabled 的值为 2
This commit is contained in:
parent
38a35baac8
commit
eb4a4b122b
@ -2,6 +2,6 @@ package oa
|
||||
|
||||
type Status = int64 // 出舱状态
|
||||
const (
|
||||
StatusDisabled Status = 1 // 启用
|
||||
StatusEnabled Status = 2 // 禁用
|
||||
StatusEnabled Status = 1 // 启用
|
||||
StatusDisabled Status = 2 // 禁用
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user