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
886 B
JavaScript
22 lines
886 B
JavaScript
Ext.define('MsAnnounce', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'DESCRIPTION', type: 'string' },
|
|
{ name: 'ANNOUNCECONTENT', type: 'string' },
|
|
{ name: 'CREATETIME', type: 'string' },
|
|
{ name: 'CREATEUSER', type: 'string' },
|
|
{ name: 'CREATEUSERREF', type: 'string' },
|
|
{ name: 'MODIFIEDUSER', type: 'string' },
|
|
{ name: 'MODIFIEDTIME', type: 'string' },
|
|
{ name: 'BEGINTIME', type: 'string' },
|
|
{ name: 'ENDTIME', type: 'string' },
|
|
{ name: 'TYPE', type: 'number' },
|
|
{ name: 'TYPEREF', type: 'string' },
|
|
{ name: 'ISISSUE', type: 'bool' },
|
|
{ name: 'COMPANYID', type: 'string' }
|
|
]
|
|
});
|
|
|