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.
21 lines
676 B
JavaScript
21 lines
676 B
JavaScript
Ext.define('MsOpSeaeEdiTemplate', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'gid', type: 'string' },
|
|
{ name: 'TEMPLATENAME', type: 'string' },
|
|
{ name: 'COMPANYID', type: 'string' },
|
|
{ name: 'USERID', type: 'string' },
|
|
{ name: 'TYPE', type: 'string' },
|
|
{ name: 'NAME', type: 'string' },
|
|
{ name: 'ADDRESS', type: 'string' },
|
|
{ name: 'COUNTRY', type: 'string' },
|
|
{ name: 'CODETYPE', type: 'string' },
|
|
{ name: 'CODE', type: 'string' },
|
|
{ name: 'TEL', type: 'string' },
|
|
{ name: 'CreateTime', type: 'string' }
|
|
]
|
|
});
|
|
|
|
|