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.
22 lines
833 B
JavaScript
22 lines
833 B
JavaScript
Ext.define('MsOpLetter', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'LE_ID',
|
|
fields: [
|
|
{ name: 'LE_ID', type: 'string' },
|
|
{ name: 'BSNO', type: 'string' },
|
|
{ name: 'HEAD_TO', type: 'string' },
|
|
{ name: 'HEAD_ATTN', type: 'string' },
|
|
{ name: 'HEAD_ATTNTEL', type: 'string' },
|
|
{ name: 'HEAD_ATTNFAX', type: 'string' },
|
|
{ name: 'HEAD_FMTEL', type: 'string' },
|
|
{ name: 'HEAD_FMFAX', type: 'string' },
|
|
{ name: 'HEAD_FMEMAIL', type: 'string' },
|
|
{ name: 'LETTERNAME', type: 'string' },
|
|
{ name: 'INPUTBY', type: 'string' },
|
|
{ name: 'INPUTTIME', type: 'string' },
|
|
{ name: 'UpdateTime', type: 'string' }
|
|
]
|
|
});
|
|
|
|
|