48 lines
729 B
TypeScript
48 lines
729 B
TypeScript
|
|
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>;
|