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.
DS7/DSWeb/Areas/MvcShipping/Viewsjs/MsInfoClientMailProject/MsInfoClientMailProjectMode...

31 lines
1.1 KiB
JavaScript

Ext.define('MsInfoClientMailProject', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'CUSTNAME', type: 'string' },
{ name: 'PROJECTNAME', type: 'string' },
{ name: 'ISDEF', type: 'bool' },
{ name: 'ISDEFREF', type: 'string' },
{ name: 'INPUTBY', type: 'string' },
{ name: 'INPUTBYREF', type: 'string' },
{ name: 'INPUTTIME', type: 'string' },
{ name: 'REMARK', type: 'string' }
]
});
Ext.define('MsInfoClientMailProjectDetail', {
extend: 'Ext.data.Model',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'PROJECTID', type: 'string' },
{ name: 'BLTYPE', type: 'string' },
{ name: 'RECEIVER', type: 'string' },
{ name: 'SUBJECT', type: 'string' },
{ name: 'DESCRIPTION', type: 'string' },
{ name: 'ATTACHMENT', type: 'string' }
]
});