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
650 B
JavaScript
18 lines
650 B
JavaScript
Ext.define('MsCodeAirPort', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'PORTID', type: 'string' },
|
|
{ name: 'PORTENAME', type: 'string' },
|
|
{ name: 'PORTCNAME', type: 'string' },
|
|
{ name: 'CODEANDNAME', type: 'string' },
|
|
{ name: 'CODEANDCNAME', type: 'string' },
|
|
{ name: 'COUNTRY', type: 'string' },
|
|
{ name: 'LANEGID', type: 'string' },
|
|
{ name: 'LANE', type: 'string' },
|
|
{ name: 'CITY', type: 'string' }
|
|
]
|
|
});
|
|
|