2022-09-15 10:44:43 +08:00
|
|
|
package dto
|
|
|
|
|
2023-01-06 18:53:25 +08:00
|
|
|
import "time"
|
|
|
|
|
2022-09-15 10:44:43 +08:00
|
|
|
type SettingInfo struct {
|
2023-01-09 22:55:10 +08:00
|
|
|
UserName string `json:"userName"`
|
|
|
|
Email string `json:"email"`
|
|
|
|
SystemVersion string `json:"systemVersion"`
|
2022-09-15 10:44:43 +08:00
|
|
|
|
2022-12-22 18:06:49 +08:00
|
|
|
SessionTimeout string `json:"sessionTimeout"`
|
2022-09-09 17:17:02 +08:00
|
|
|
LocalTime string `json:"localTime"`
|
2022-09-15 10:44:43 +08:00
|
|
|
|
|
|
|
PanelName string `json:"panelName"`
|
|
|
|
Theme string `json:"theme"`
|
|
|
|
Language string `json:"language"`
|
|
|
|
|
2022-12-22 18:06:49 +08:00
|
|
|
ServerPort string `json:"serverPort"`
|
2022-09-15 10:44:43 +08:00
|
|
|
SecurityEntrance string `json:"securityEntrance"`
|
2022-12-22 18:06:49 +08:00
|
|
|
ExpirationDays string `json:"expirationDays"`
|
2022-09-29 16:15:59 +08:00
|
|
|
ExpirationTime string `json:"expirationTime"`
|
2022-09-15 10:44:43 +08:00
|
|
|
ComplexityVerification string `json:"complexityVerification"`
|
|
|
|
MFAStatus string `json:"mfaStatus"`
|
2022-09-14 23:27:17 +08:00
|
|
|
MFASecret string `json:"mfaSecret"`
|
2022-09-15 10:44:43 +08:00
|
|
|
|
|
|
|
MonitorStatus string `json:"monitorStatus"`
|
2022-12-22 18:06:49 +08:00
|
|
|
MonitorStoreDays string `json:"monitorStoreDays"`
|
2022-09-15 10:44:43 +08:00
|
|
|
|
|
|
|
MessageType string `json:"messageType"`
|
|
|
|
EmailVars string `json:"emailVars"`
|
|
|
|
WeChatVars string `json:"weChatVars"`
|
|
|
|
DingVars string `json:"dingVars"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type SettingUpdate struct {
|
|
|
|
Key string `json:"key" validate:"required"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
}
|
2022-09-08 18:47:15 +08:00
|
|
|
|
|
|
|
type PasswordUpdate struct {
|
|
|
|
OldPassword string `json:"oldPassword" validate:"required"`
|
|
|
|
NewPassword string `json:"newPassword" validate:"required"`
|
|
|
|
}
|
2023-01-06 18:53:25 +08:00
|
|
|
|
|
|
|
type SnapshotCreate struct {
|
2023-01-09 22:55:10 +08:00
|
|
|
From string `json:"from" validate:"required,oneof=OSS S3 SFTP MINIO"`
|
2023-01-06 18:53:25 +08:00
|
|
|
Description string `json:"description"`
|
|
|
|
}
|
2023-01-09 22:55:10 +08:00
|
|
|
type SnapshotRecover struct {
|
|
|
|
IsNew bool `json:"isNew"`
|
|
|
|
ReDownload bool `json:"reDownload"`
|
|
|
|
ID uint `json:"id" validate:"required"`
|
|
|
|
}
|
2023-01-06 18:53:25 +08:00
|
|
|
type SnapshotInfo struct {
|
|
|
|
ID uint `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Description string `json:"description"`
|
2023-01-09 22:55:10 +08:00
|
|
|
From string `json:"from"`
|
2023-01-06 18:53:25 +08:00
|
|
|
Status string `json:"status"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
2023-01-09 22:55:10 +08:00
|
|
|
Version string `json:"version"`
|
|
|
|
|
|
|
|
InterruptStep string `json:"interruptStep"`
|
|
|
|
RecoverStatus string `json:"recoverStatus"`
|
|
|
|
RecoverMessage string `json:"recoverMessage"`
|
|
|
|
LastRecoveredAt string `json:"lastRecoveredAt"`
|
|
|
|
RollbackStatus string `json:"rollbackStatus"`
|
|
|
|
RollbackMessage string `json:"rollbackMessage"`
|
|
|
|
LastRollbackedAt string `json:"lastRollbackedAt"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type UpgradeInfo struct {
|
|
|
|
NewVersion string `json:"newVersion"`
|
|
|
|
Tag string `json:"tag"`
|
|
|
|
ReleaseNote string `json:"releaseNote"`
|
|
|
|
CreatedAt string `json:"createdAt"`
|
|
|
|
PublishedAt string `json:"publishedAt"`
|
2023-01-06 18:53:25 +08:00
|
|
|
}
|