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/MsCrmKeyCodeSet/MsCrmKeyCodeSetModel.js

20 lines
531 B
JavaScript

2 years ago
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' }
]
});