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/MsContainerSet/MsContainerSetModel.js

19 lines
609 B
JavaScript

2 years ago
Ext.define('MsContainerSetEntity', {
extend: 'Ext.data.Model',
idProperty: 'CTNID',
fields: [
{ name: 'CTNID', type: 'string' },
{ name: 'CTNSIZE', type: 'string' },
{ name: 'CTNTYPE', type: 'string' },
{ name: 'CTN', type: 'string' },
{ name: 'EDICODE', type: 'string' },
{ name: 'CTNWEIGHT', type: 'string' },
{ name: 'EEXPLAIN', type: 'string' },
{ name: 'CEXPLAIN', type: 'string' },
{ name: 'AFRCODE', type: 'string' },
{ name: 'TEU', type: 'numeric' },
{ name: 'DLIKGS', type: 'numeric' }
]
});