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.
24 lines
819 B
JavaScript
24 lines
819 B
JavaScript
Ext.define('MsOpMailLog', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'fid',
|
|
fields: [
|
|
{ name: 'fid', type: 'string' },
|
|
{ name: 'BSNO', type: 'string' },
|
|
{ name: 'BLTYPE', type: 'string' },
|
|
{ name: 'RECEIVER', type: 'string' },
|
|
{ name: 'SUBJECT', type: 'string' },
|
|
{ name: 'DESCRIPTION', type: 'string' },
|
|
{ name: 'ATTACHMENT', type: 'string' },
|
|
{ name: 'SENDTIME', type: 'string' },
|
|
{ name: 'SENDER', type: 'string' },
|
|
{ name: 'MBLNO', type: 'string' },
|
|
{ name: 'CUSTOMERNAME', type: 'string' },
|
|
{ name: 'ETD', type: 'string' },
|
|
{ name: 'CARRIER', type: 'string' }
|
|
|
|
|
|
]
|
|
});
|
|
|
|
|