添加接口

This commit is contained in:
2025-04-17 10:06:04 +08:00
parent aabc5d4378
commit 38a35baac8
2 changed files with 27 additions and 0 deletions

7
oa/constant.go Normal file
View File

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