update: deps

This commit is contained in:
2026-08-27 15:32:23 +08:00
parent c9f559a8ea
commit 74726cd851
14 changed files with 1887 additions and 1734 deletions
Vendored Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
+12 -2
View File
@@ -1,7 +1,12 @@
export namespace service {
export class MacAddress {
Id: string;
Prefix: string;
VendorName: string;
Private: boolean;
BlockType: string;
LastUpdate: string;
static createFrom(source: any = {}) {
return new MacAddress(source);
@@ -9,7 +14,12 @@ export namespace service {
constructor(source: any = {}) {
if ('string' === typeof source) source = JSON.parse(source);
this.Id = source["Id"];
this.Prefix = source["Prefix"];
this.VendorName = source["VendorName"];
this.Private = source["Private"];
this.BlockType = source["BlockType"];
this.LastUpdate = source["LastUpdate"];
}
}
Vendored Regular → Executable
View File
View File
Vendored Regular → Executable
View File
View File