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.
DS7/DSWeb/Areas/MvcShipping/Viewsjs/MsCodeDisportSet/MsCodeDisportSetModel.js

40 lines
1.1 KiB
JavaScript

2 years ago
Ext.define('MsCodeGoods', {
extend: 'Ext.data.Model',
idProperty: 'PORTID',
fields: [
{ name: 'PORTID', type: 'string' },
{ name: 'PORT', type: 'string' },
{ name: 'CHAU', type: 'string' },
{ name: 'PORTTYPE', type: 'string' },
{ name: 'EDICODE', type: 'string' },
{ name: 'cname', type: 'string' },
{ name: 'country', type: 'string' },
{ name: 'LANE', type: 'string' },
{ name: 'LANEGID', type: 'string' }
]
});
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' }
]
});