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.
26 lines
1.0 KiB
JavaScript
26 lines
1.0 KiB
JavaScript
Ext.define('MsWl_LK_CargoInfomb', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'PARENT_GID', type: 'string' },
|
|
{ name: 'PARENT_NAME', type: 'string' },
|
|
{ name: 'PARENT_GID2', type: 'string' },
|
|
{ name: 'PARENT_NAME2', type: 'string' },
|
|
{ name: 'CARGOTYPE', type: 'string' },
|
|
{ name: 'CARGONAME', type: 'string' },
|
|
{ name: 'SPECIFICATION', type: 'string' },
|
|
{ name: 'WEIGHT', type: 'string' },
|
|
{ name: 'BOXCOUNT', type: 'string' },
|
|
{ name: 'BOXWEIGHT', type: 'string' },
|
|
{ name: 'STARTDATE', type: 'date' },
|
|
{ name: 'STARTNUM', type: 'string' },
|
|
{ name: 'Remark', type: 'string' },
|
|
{ name: 'INSERTED', type: 'string' },
|
|
{ name: 'Remain', type: 'string' },
|
|
{ name: 'AREA', type: 'string' }
|
|
]
|
|
});
|
|
|
|
|