40 lines
649 B
TypeScript
40 lines
649 B
TypeScript
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
|
|
|
|
/**
|
|
* @description: LngBCurrency分页参数 模型
|
|
*/
|
|
export interface LngBCurrencyPageParams extends BasicPageParams {
|
|
fullName: string;
|
|
|
|
valid: string;
|
|
|
|
code: string;
|
|
|
|
localSign: string;
|
|
|
|
note: string;
|
|
}
|
|
|
|
/**
|
|
* @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>; |