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.
25 lines
926 B
JavaScript
25 lines
926 B
JavaScript
Ext.define('MsCrmClientVisit', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'CLIENTGID', type: 'string' },
|
|
{ name: 'SHORTNAME', type: 'string' },
|
|
{ name: 'CONTACTNAME', type: 'string' },
|
|
{ name: 'SALE', type: 'string' },
|
|
{ name: 'VISITWAY', type: 'string' },
|
|
{ name: 'VISITCONTENT', type: 'string' },
|
|
{ name: 'VISITDATE', type: 'string' },
|
|
{ name: 'VISITTITLE', type: 'string' },
|
|
{ name: 'VISITSTATUS', type: 'string' },
|
|
{ name: 'NEXTACTION', type: 'string' },
|
|
{ name: 'NEXTCONTENT', type: 'string' },
|
|
{ name: 'NEXTDATE', type: 'string' },
|
|
{ name: 'CREATEUSER', type: 'string' },
|
|
{ name: 'CREATETIME', type: 'string' },
|
|
{ name: 'MODIFIEDUSER', type: 'string' },
|
|
{ name: 'MODIFIEDTIME', type: 'string' }
|
|
]
|
|
});
|
|
|