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.
23 lines
667 B
JavaScript
23 lines
667 B
JavaScript
Ext.define('MsCodeOpMustField', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'CORPID', type: 'string' },
|
|
{ name: 'BSTYPE', type: 'string' },
|
|
{ name: 'FIELDNAME', type: 'string' },
|
|
{ name: 'ISMUST', type: 'string' },
|
|
{ name: 'ISCOLOR', type: 'string' },
|
|
{ name: 'ISREADONLY', type: 'string' }
|
|
]
|
|
});
|
|
|
|
|
|
Ext.define('MsCodeFieldName', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'FieldName',
|
|
fields: [
|
|
{ name: 'FieldName', type: 'string' }
|
|
]
|
|
});
|