You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
1.8 KiB

import { DictionaryTools } from 'platform-core';
/**
* 使
*/
export class Dictionary {
/**
*
*/
overturnType: any;
/**
*
*/
customerSize: any;
/**
*
*/
registeredType: any;
/**
*
*/
goverFinanceType: any;
/**
*
*/
goverFinanceSign: any;
/**
*
*/
registrationCd: any;
/**
*
*/
nationCd: any;
/**
*
*/
memberTypeCd: any;
/**
*
*/
financeTypeCd: any;
/**
*
*/
financeSortTypeCd: any;
/**
*
*/
financeStatusCd: any;
/**
*
*/
caliberCd: any;
/**
*
*/
currencyTypeCd: any;
async load() {
const arr = await DictionaryTools.fetch([
'OVERTURN_TYPE',
'CustomerSizeCd',
'REGISTERED_TYPE',
'GOVER_FINANCE_TYPE',
'GOVER_FINANCE_SIGN',
'REGISTRATION_CD',
'NATION_CD',
'MEMBER_TYPE_CD',
'FinanceTypeCd',
'FinanceSortTypeCd',
'FinanceStatusCd',
'CaliberCd',
'CurrencyTypeCd',
]);
this.overturnType = arr['OVERTURN_TYPE'];
this.customerSize = arr['CustomerSizeCd'];
this.registeredType = arr['REGISTERED_TYPE'];
this.goverFinanceType = arr['GOVER_FINANCE_TYPE'];
this.goverFinanceSign = arr['GOVER_FINANCE_SIGN'];
this.registrationCd = arr['REGISTRATION_CD'];
this.nationCd = arr['NATION_CD'];
this.memberTypeCd = arr['MEMBER_TYPE_CD'];
this.financeTypeCd = arr['FinanceTypeCd'];
this.financeSortTypeCd = arr['FinanceSortTypeCd'];
this.financeStatusCd = arr['FinanceStatusCd'];
this.caliberCd = arr['CaliberCd'];
this.currencyTypeCd = arr['CurrencyTypeCd'];
}
}