重新生成bank和region

This commit is contained in:
2025-10-22 12:15:37 +08:00
parent 8cd8af121b
commit 280eac6a61
14 changed files with 1516 additions and 1265 deletions

View File

@ -9,6 +9,9 @@ enum Api {
LngBBank = '/mdm/bank',
DataLog = '/mdm/bank/datalog',
}
/**
@ -84,4 +87,22 @@ export async function deleteLngBBank(ids: string[], mode: ErrorMessageMode = 'mo
errorMessageMode: mode,
},
);
}
}
/**
* @description: 获取数据日志LngBBank
*/
export async function getDataLogLngBBank(id: string, mode: ErrorMessageMode = 'modal') {
return defHttp.post<boolean>(
{
url: Api.Datalog,
data: id,
},
{
errorMessageMode: mode,
},
);
}