|
|
|
|
Ext.define('MsCurrencyExchange', {
|
|
|
|
|
extend: 'Ext.data.Model',
|
|
|
|
|
idProperty: 'GID',
|
|
|
|
|
fields: [
|
|
|
|
|
{ name: 'GID', type: 'string' },
|
|
|
|
|
{ name: 'CURRENCYID', type: 'string' },
|
|
|
|
|
{ name: 'CURRENCY', type: 'string' },
|
|
|
|
|
{ name: 'VALUE', type: 'string' },
|
|
|
|
|
{ name: 'CRVALUE', type: 'string' },
|
|
|
|
|
{ name: 'CUSTOMVALUE', type: 'string' },
|
|
|
|
|
{ name: 'TYPE', type: 'string' },
|
|
|
|
|
{ name: 'STARTTIME', type: 'string' },
|
|
|
|
|
{ name: 'ENDTIME', type: 'string' },
|
|
|
|
|
{ name: 'LOCALCURR', type: 'string' },
|
|
|
|
|
{ name: 'CREATEUSER', type: 'string' },
|
|
|
|
|
{ name: 'CREATEUSERREF', type: 'string' },
|
|
|
|
|
{ name: 'CREATETIME', type: 'string' },
|
|
|
|
|
{ name: 'COMPANYID', type: 'string' },
|
|
|
|
|
{ name: 'TimeZones', type: 'string' },//2019-01-01_2019-02-02
|
|
|
|
|
{ name: 'DrRef', type: 'string' },//型如 "应收USD_2019-01-01_2019-02-02"
|
|
|
|
|
{ name: 'CrRef', type: 'string' },
|
|
|
|
|
{ name: 'CustomRef', type: 'string' },
|
|
|
|
|
{ name: 'Remark', type: 'string' }
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Ext.define('MsFeeCurr', {
|
|
|
|
|
extend: 'Ext.data.Model',
|
|
|
|
|
idProperty: 'CURR',
|
|
|
|
|
fields: [
|
|
|
|
|
{ name: 'GID', type: 'string' },
|
|
|
|
|
{ name: 'CURR', type: 'string' },
|
|
|
|
|
{ name: 'DEFRATE', type: 'number' }
|
|
|
|
|
]
|
|
|
|
|
});
|