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.
15 lines
518 B
JavaScript
15 lines
518 B
JavaScript
Ext.define('Code_lanesmb', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'LANEID', type: 'string' },
|
|
{ name: 'LANE', type: 'string' },
|
|
{ name: 'LANEEN', type: 'string' },
|
|
{ name: 'OP', type: 'string' },
|
|
{ name: 'DOC', type: 'string' },
|
|
{ name: 'CUSTSERVICE', type: 'string' },
|
|
{ name: 'EDICODE', type: 'string' }
|
|
]
|
|
});
|