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.
55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
Ext.define('MsCodePort', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'PORTID',
|
|
fields: [
|
|
{ name: 'PORTID', type: 'string' },
|
|
{ name: 'PORT', type: 'string' },
|
|
{ name: 'CHAU', type: 'string' },
|
|
{ name: 'EXPLAIN', type: 'string' },
|
|
{ name: 'PORTTYPE', type: 'string' },
|
|
{ name: 'EDICODE', type: 'string' },
|
|
{ name: 'cname', type: 'string' },
|
|
{ name: 'country', type: 'string' },
|
|
{ name: 'countryid', 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' }
|
|
]
|
|
});
|
|
Ext.define('MsCodeCtnEdi', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'CTN', type: 'string' },
|
|
{ name: 'EDICODE', type: 'string' },
|
|
{ name: 'EDINAME', type: 'string' },
|
|
{ name: 'EDINAMEREF', type: 'string' },
|
|
{ name: 'REMARK', type: 'string' },
|
|
{ name: 'PORTID', type: 'string' }
|
|
]
|
|
}); |