feat(wxwork): update toUsers field type to int64 and enhance comments for clarity

This commit is contained in:
mlogclub
2026-04-21 17:57:53 +08:00
parent 22e1c2e395
commit beebf131c8
4 changed files with 69 additions and 9 deletions
+5 -5
View File
@@ -20,11 +20,11 @@ type Config struct {
}
type WxWorkNotifyConfig struct {
Enabled bool `yaml:"enabled"`
ToUsers []string `yaml:"toUsers"`
Safe bool `yaml:"safe"`
EnableDuplicateCheck bool `yaml:"enableDuplicateCheck"`
DuplicateCheckInterval int `yaml:"duplicateCheckInterval"`
Enabled bool `yaml:"enabled"`
ToUsers []int64 `yaml:"toUsers"`
Safe bool `yaml:"safe"`
EnableDuplicateCheck bool `yaml:"enableDuplicateCheck"`
DuplicateCheckInterval int `yaml:"duplicateCheckInterval"`
}
type ServerConfig struct {