🔨 修改额外配置字段名称.

This commit is contained in:
lijiahangmax
2025-08-10 19:26:33 +08:00
parent 8a4176bc9e
commit a3476596dd
4 changed files with 48 additions and 44 deletions

View File

@@ -50,20 +50,23 @@ export interface HostLabelExtraSettingModel {
export interface HostSpecExtraModel {
sn: string;
osName: string;
cpuCore: number;
cpuCount: number;
cpuPhysicalCore: number;
cpuLogicalCore: number;
cpuFrequency: number;
cpuModel: string;
memorySize: number;
diskSize: number;
inBandwidth: number;
outBandwidth: number;
publicIpAddress: Array<string>;
privateIpAddress: Array<string>;
publicIpAddresses: Array<string>;
privateIpAddresses: Array<string>;
chargePerson: string;
createdTime: number;
expiredTime: number;
items: Array<{
label: string;
key?: string;
value: string;
}>;
}