27 lines
673 B
Go
27 lines
673 B
Go
package cm_omc
|
|
|
|
type ConfigOMC struct{}
|
|
|
|
type SystemConfig struct {
|
|
ForwardFlag bool `json:"forwardFlag"`
|
|
}
|
|
|
|
type AlarmEmailForward struct {
|
|
Enable bool `json:"enable"`
|
|
EmailList string `json:"emailList"`
|
|
SMTP string `json:"smtp"`
|
|
Port uint16 `json:"port"`
|
|
User string `json:"user"`
|
|
Password string `json:"password"`
|
|
TLSSkipVerify bool `json:"tlsSkipVerify"`
|
|
}
|
|
|
|
type AlarmSMSForward struct {
|
|
Enable bool `json:"enable"`
|
|
MobileList string `json:"mobileList"`
|
|
SMSCAddr string `json:"smscAddr"`
|
|
SystemID string `json:"systemID"`
|
|
Password string `json:"password"`
|
|
SystemType string `json:"systemType"`
|
|
}
|