重新生成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,
},
);
}

View File

@ -11,6 +11,12 @@ export interface LngBBankPageParams extends BasicPageParams {
regionCode: string;
valid: string;
fullName: string;
code: string;
swift: string;
}
/**
@ -21,10 +27,16 @@ export interface LngBBankPageModel {
bankCode: string;
fullName: string;
shortName: string;
regionCode: string;
code: string;
swift: string;
valid: string;
}

View File

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

View File

@ -4,17 +4,15 @@ import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
* @description: LngBRegion分页参数 模型
*/
export interface LngBRegionPageParams extends BasicPageParams {
id: string;
code: string;
createUserId: string;
fullName: string;
regionTypeCode: string;
pid: string;
fullName: string;
fullPath: string;
valid: string;
@ -27,19 +25,19 @@ export interface LngBRegionPageParams extends BasicPageParams {
export interface LngBRegionPageModel {
id: string;
regionTypeCode: string;
valid: string;
code: string;
fullName: string;
regionTypeCode: string;
pid: string;
note: string;
fullPath: string;
createUserId: string;
valid: string;
note: string;
}
0;