This commit is contained in:
2024-12-10 17:36:50 +08:00
parent 983cde2c7d
commit c63a553d6c
19 changed files with 352 additions and 29 deletions

12
signals/table.go Normal file
View File

@@ -0,0 +1,12 @@
package signals
import (
"github.com/golang-module/carbon/v2"
)
type TablePrototype struct {
LastUpdated carbon.Carbon //值班表最后更新的时间
NeedUpdate bool //值班表是否需要更新
}
var Table TablePrototype