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.
22 lines
748 B
JavaScript
22 lines
748 B
JavaScript
Ext.define('SysRoleTaskQueryModel', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'RoleId', type: 'string' },
|
|
{ name: 'RoleName', type: 'string' },
|
|
{ name: 'FormName', type: 'string' },
|
|
{ name: 'MODNAME', type: 'string' },
|
|
{ name: 'BSTYPE', type: 'string' },
|
|
{ name: 'URL', type: 'string' },
|
|
{ name: 'FIELDVALUES', type: 'string' },
|
|
{ name: 'SQLCONTEXT', type: 'string' },
|
|
{ name: 'COMPANYID', type: 'string' },
|
|
{ name: 'SQLSTR', type: 'string' },
|
|
{ name: 'REMARK', type: 'string' },
|
|
{ name: 'ISSTOP', type: 'string' },
|
|
{ name: 'SORT', type: 'int' }
|
|
|
|
]
|
|
});
|