Files
geg-gas-web/src/api/mdm/Currency/model/CurrencyModel.ts

40 lines
649 B
TypeScript
Raw Normal View History

2025-10-21 15:02:09 +08:00
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
/**
* @description: LngBCurrency分页参数
*/
export interface LngBCurrencyPageParams extends BasicPageParams {
fullName: string;
2025-10-22 13:38:25 +08:00
valid: string;
2025-10-22 13:54:41 +08:00
code: string;
localSign: string;
note: string;
2025-10-21 15:02:09 +08:00
}
/**
* @description: LngBCurrency分页返回值模型
*/
export interface LngBCurrencyPageModel {
id: string;
code: string;
fullName: string;
localSign: string;
valid: string;
note: string;
}
0;
/**
* @description: LngBCurrency分页返回值结构
*/
export type LngBCurrencyPageResult = BasicFetchResult<LngBCurrencyPageModel>;