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.
56 lines
2.0 KiB
JavaScript
56 lines
2.0 KiB
JavaScript
Ext.define('MsWl_LK_Linemb', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'NAME', type: 'string' },
|
|
{ name: 'LINETYPE', type: 'string' },
|
|
{ name: 'NoLoadMil', type: 'string' },
|
|
{ name: 'OverLoadMil', type: 'string' },
|
|
{ name: 'Remark', type: 'string' },
|
|
{ name: 'SEQUENCE', type: 'number' },
|
|
{ name: 'INSERTED', type: 'string' },
|
|
{ name: 'AREA', type: 'string' }
|
|
]
|
|
});
|
|
|
|
Ext.define('MsWl_LK_Pointmb', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'NAME', type: 'string' },
|
|
{ name: 'POINTTYPE', type: 'string' },
|
|
{ name: 'DESCRIPTION', type: 'string' },
|
|
{ name: 'ADDRESS', type: 'string' },
|
|
{ name: 'CONTACTER', type: 'string' },
|
|
{ name: 'TEL', type: 'string' },
|
|
{ name: 'REMARK', type: 'string' },
|
|
{ name: 'INSERTED', type: 'string' },
|
|
{ name: 'SEQUENCE', type: 'string' },
|
|
{ name: '托盘', type: 'string' },
|
|
{ name: '围架', type: 'string' },
|
|
{ name: 'AREA', type: 'string' }
|
|
]
|
|
});
|
|
|
|
|
|
Ext.define('MsWl_LK_LineDetailmb', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'LINE_GID', type: 'string' },
|
|
{ name: 'POINT_GID', type: 'string' },
|
|
{ name: 'REMARK', type: 'string' },
|
|
{ name: 'INSERTED', type: 'string' },
|
|
{ name: 'SEQUENCE', type: 'number' },
|
|
{ name: 'NAME', type: 'string' },
|
|
{ name: 'ADDRESS', type: 'string' },
|
|
{ name: 'CONTACTER', type: 'string' },
|
|
{ name: 'TEL', type: 'string' }
|
|
]
|
|
});
|
|
|
|
|