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.

25 lines
672 B
JavaScript

12 months ago

Ext.define('countryype', {
extend: 'Ext.data.Model',
fields: [
{ name: 'Gid', type: 'string' },
{ name: 'countryid', type: 'string' },
{ name: 'country', type: 'string' }
]
});
Ext.define('gangkoutype', {
extend: 'Ext.data.Model',
fields: [
{ name: 'gkid', type: 'string' },
{ name: 'gkname', type: 'string' }
]
});
Ext.define('LaneType', {
extend: 'Ext.data.Model',
fields: [
{name:'GID',type:'string'},
{ name: 'laneid', type: 'string' },
{ name: 'LANE', type: 'string' }
]
});