币种
This commit is contained in:
48
src/api/mdm/Currency/model/CurrencyModel.ts
Normal file
48
src/api/mdm/Currency/model/CurrencyModel.ts
Normal 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>;
|
||||
Reference in New Issue
Block a user