|
@@ -3,16 +3,25 @@ export interface IWorkbench {
|
|
|
emergencyDays: number;
|
|
emergencyDays: number;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+export interface IDowntimeAnnouncement {
|
|
|
|
|
+ startTime: string;
|
|
|
|
|
+ alertTime: number;
|
|
|
|
|
+ waitTime: number;
|
|
|
|
|
+ message: string;
|
|
|
|
|
+ activation: boolean;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
export interface IGeneralSetting {
|
|
export interface IGeneralSetting {
|
|
|
ID: string;
|
|
ID: string;
|
|
|
workbench: IWorkbench;
|
|
workbench: IWorkbench;
|
|
|
registerAccount?: {
|
|
registerAccount?: {
|
|
|
- accountFormat: String,
|
|
|
|
|
- accountFormatMsg: String,
|
|
|
|
|
- registerAccount: Boolean,
|
|
|
|
|
- realNameAuthentication: Boolean,
|
|
|
|
|
- certifiedPhone: Boolean,
|
|
|
|
|
- phoneonly: Boolean,
|
|
|
|
|
- secondaryCertification: Boolean,
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ accountFormat: string;
|
|
|
|
|
+ accountFormatMsg: string;
|
|
|
|
|
+ registerAccount: boolean;
|
|
|
|
|
+ realNameAuthentication: boolean;
|
|
|
|
|
+ certifiedPhone: boolean;
|
|
|
|
|
+ phoneonly: boolean;
|
|
|
|
|
+ secondaryCertification: boolean;
|
|
|
|
|
+ };
|
|
|
|
|
+ downtimeAnnouncement?: IDowntimeAnnouncement;
|
|
|
}
|
|
}
|