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.
18 lines
646 B
JavaScript
18 lines
646 B
JavaScript
Ext.define('MsPERIOD', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'PERIOD',
|
|
fields: [
|
|
{ name: 'PERIOD', type: 'string' },
|
|
{ name: 'PYEAR', type: 'string' },
|
|
{ name: 'PMONTH', type: 'string' },
|
|
{ name: 'FDAY', type: 'string' },
|
|
{ name: 'TDAY', type: 'string' },
|
|
{ name: 'CLOSED', type: 'string' },
|
|
{ name: 'CLOSEUSER', type: 'string' },
|
|
{ name: 'CLOSEDATE', type: 'string' },
|
|
{ name: 'COMPANYID', type: 'string' },
|
|
{ name: 'CLOSEUSERREF', type: 'string' }
|
|
]
|
|
});
|
|
|