This commit is contained in:
2025-10-21 15:02:09 +08:00
parent bc9b02cc03
commit e6a1fab6f5
7 changed files with 1338 additions and 0 deletions

View File

@ -0,0 +1,48 @@
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
/**
* @description: LngBCurrency分页参数 模型
*/
export interface LngBCurrencyPageParams extends BasicPageParams {
code: string;
fullName: string;
currSymbol: string;
localSign: string;
sort: string;
valid: string;
note: string;
}
/**
* @description: LngBCurrency分页返回值模型
*/
export interface LngBCurrencyPageModel {
id: string;
code: string;
fullName: string;
currSymbol: string;
localSign: string;
sort: string;
valid: string;
note: string;
}
0;
/**
* @description: LngBCurrency分页返回值结构
*/
export type LngBCurrencyPageResult = BasicFetchResult<LngBCurrencyPageModel>;