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
496 B
JavaScript
15 lines
496 B
JavaScript
Ext.define('MsCodeYardDataSet', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'YARDCODE', type: 'string' },
|
|
{ name: 'YARDCODEREF', type: 'string' },
|
|
{ name: 'YARD', type: 'string' },
|
|
{ name: 'LOGINNAME', type: 'string' },
|
|
{ name: 'PASSWORD', type: 'string' },
|
|
{ name: 'COMPANYID', type: 'string' }
|
|
]
|
|
});
|
|
|