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.
46 lines
1.6 KiB
JavaScript
46 lines
1.6 KiB
JavaScript
|
|
Ext.define('MsSysTable', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'TBLNAME', type: 'string' },
|
|
{ name: 'TBLCNAME', type: 'string' },
|
|
{ name: 'MODULENAME', type: 'string' },
|
|
{ name: 'REMARKS', type: 'string' },
|
|
{ name: 'INPUTBY', type: 'string' },
|
|
{ name: 'INPUTBYREF', type: 'string' },
|
|
{ name: 'INPUTTIME', type: 'string' },
|
|
{ name: 'AUDITBY', type: 'string' },
|
|
{ name: 'AUDITBYREF', type: 'string' },
|
|
{ name: 'AUDITTIME', type: 'string' }
|
|
]
|
|
});
|
|
|
|
|
|
Ext.define('MsSysTableDetail', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'TBLGID', type: 'string' },
|
|
{ name: 'FIELDNAME', type: 'string' },
|
|
{ name: 'FIELDCNAME', type: 'string' },
|
|
{ name: 'FIELDTYPE', type: 'string' },
|
|
{ name: 'FIELDLEN', type: 'string' },
|
|
{ name: 'ISNULL', type: 'string' },
|
|
{ name: 'ISKEY', type: 'string' },
|
|
{ name: 'DEFVALUE', type: 'string' },
|
|
{ name: 'LNKTBL', type: 'string' },
|
|
{ name: 'LNKFIELDNAME', type: 'string' },
|
|
{ name: 'REMARKS', type: 'string' },
|
|
{ name: 'INPUTBY', type: 'string' },
|
|
{ name: 'SORT', type: 'number' },
|
|
{ name: 'INPUTBYREF', type: 'string' },
|
|
{ name: 'INPUTTIME', type: 'string' },
|
|
]
|
|
});
|
|
|
|
|
|
|