finished: check update

This commit is contained in:
2024-07-23 16:32:49 +08:00
parent b7d64cba7b
commit e0dbd03397
16 changed files with 511 additions and 37 deletions

View File

@@ -2,8 +2,12 @@
// This file is automatically generated. DO NOT EDIT
import {service} from '../models';
export function CheckBeforeInit():Promise<boolean>;
export function Close():Promise<void>;
export function InitSQLiteHelper():Promise<boolean>;
export function QueryMacAddressByPrefix(arg1:string):Promise<service.MacAddress>;
export function QueryVersion():Promise<string>;

View File

@@ -2,10 +2,18 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
export function CheckBeforeInit() {
return window['go']['service']['SQLiteHelper']['CheckBeforeInit']();
}
export function Close() {
return window['go']['service']['SQLiteHelper']['Close']();
}
export function InitSQLiteHelper() {
return window['go']['service']['SQLiteHelper']['InitSQLiteHelper']();
}
export function QueryMacAddressByPrefix(arg1) {
return window['go']['service']['SQLiteHelper']['QueryMacAddressByPrefix'](arg1);
}