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/MsSysThirdPartyAccount/MsSysThirdPartyAccountModel.js

15 lines
497 B
JavaScript

2 years ago
Ext.define('MsSysThirdPartyAccount', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'USERID', type: 'string' },
{ name: 'USERNAME', type: 'string' },
{ name: 'CUSTOMERNAME', type: 'string' },
{ name: 'THIRDPARTY', type: 'string' },
{ name: 'ACCOUNT', type: 'string' },
{ name: 'ACCOUNTPSW', type: 'string' }
]
});