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.
20 lines
531 B
JavaScript
20 lines
531 B
JavaScript
Ext.define('MsCrmKeyCodeSetModel', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{name: 'ID', type: 'string' }, //ID
|
|
{name: 'KEYTYPE', type: 'string' }, //上级ID
|
|
{name: 'KEYVALUE', type: 'string' } //值
|
|
]
|
|
});
|
|
|
|
Ext.define('Sys_EnumerationModel', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'VALUE', type: 'string' },
|
|
{ name: 'NAME', type: 'string' },
|
|
{ name: 'TYPE', type: 'string' }
|
|
]
|
|
}); |