2 Commits

Author SHA1 Message Date
91cb2927e3 Петя, блять 2025-06-03 02:54:29 +03:00
1f5248ac87 Quick fix 2025-06-03 01:58:06 +03:00

View File

@ -305,7 +305,6 @@ type REDEV struct {
USER string // Имя пользователя
PWD string // Пароль
URL string // ???
CMDPORT uint // ???
}
// 7.29
@ -359,9 +358,23 @@ type CG struct {
AT uint // Answer automatically when exceed time
}
type RSI struct {
E int64 // End time in seconds
S int64 // Start time in seconds
}
type RCP struct {
RSI [][]RSI // Recording type parameters (array for cameras number, 7 for week days)
}
type RP struct {
RCP []RCP // Single channel recording period parameter list
}
type Setting struct {
KEYS KEYS `json:"KEYS,omitempty"`
RIP RIP `json:"RIP,omitempty"`
RP RP `json:"RP,omitempty"`
TIMEP TIMEP `json:"TIMEP,omitempty"`
ATP ATP `json:"ATP,omitempty"`
SSP SSP `json:"SSP,omitempty"`