You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
573 B
JavaScript
18 lines
573 B
JavaScript
Ext.define('MsCodeCountry', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'COUNTRYID', type: 'string' },
|
|
{ name: 'COUNTRY', type: 'string' },
|
|
{ name: 'COUNTRYENAME', type: 'string' },
|
|
{ name: 'CAPITAL', type: 'string' },
|
|
{ name: 'CHAU', type: 'string' },
|
|
{ name: 'EXPLAIN', type: 'string' },
|
|
{ name: 'COUNTRYID_3', type: 'string' },
|
|
{ name: 'TARIFF', type: 'string' },
|
|
{ name: 'TARIFFREF', type: 'string' }
|
|
]
|
|
});
|
|
|