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.
42 lines
1.9 KiB
JavaScript
42 lines
1.9 KiB
JavaScript
Ext.define('MsCodeFtpSet', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'EDINAME', type: 'string' },
|
|
{ name: 'SERVERIP', type: 'string' },
|
|
{ name: 'FOLDERNAME', type: 'string' },
|
|
{ name: 'USERNAME', type: 'string' },
|
|
{ name: 'PASSWORD', type: 'string' },
|
|
{ name: 'CORPID', type: 'string' },
|
|
{ name: 'CARRIERID', type: 'string' },
|
|
{ name: 'SENDCODE', type: 'string' },
|
|
{ name: 'RECEIVECODE', type: 'string' },
|
|
{ name: 'SENDNAME', type: 'string' },
|
|
{ name: 'SENDATTN', type: 'string' },
|
|
{ name: 'SENDTEL', type: 'string' },
|
|
{ name: 'SENDEMAIL', type: 'string' },
|
|
{ name: 'RECEIVEOP', type: 'string' },
|
|
{ name: 'RECEIVESALE', type: 'string' },
|
|
{ name: 'SENDCOMPANYCODE', type: 'string' },
|
|
{ name: 'SENDSUBCOMPANYCODE', type: 'string' },
|
|
{ name: 'RECEIVEDEPT', type: 'string' },
|
|
{ name: 'RECEIVEEMAIL', type: 'string' },
|
|
{ name: 'RECEIVESIEMAIL', type: 'string' },
|
|
{ name: 'SHIPPERTEL', type: 'string' },
|
|
{ name: 'CONSIGNEETEL', type: 'string' },
|
|
{ name: 'NOTIFYPARTYTEL', type: 'string' },
|
|
{ name: 'SERVERIP2', type: 'string' },
|
|
{ name: 'FOLDERNAME2', type: 'string' },
|
|
{ name: 'USERNAME2', type: 'string' },
|
|
{ name: 'PASSWORD2', type: 'string' },
|
|
{ name: 'ISSSL', type: 'bool' },
|
|
{ name: 'SFTPPORT', type: 'string' },
|
|
{ name: 'ISUSETEL', type: 'string' },
|
|
{ name: 'TMPFOLDERNAME', type: 'string' },
|
|
{ name: 'SFTPCERFILENAME', type: 'string' },
|
|
{ name: 'ALIASSENDCODE', type: 'string' }
|
|
]
|
|
});
|
|
|