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.
55 lines
1.9 KiB
JavaScript
55 lines
1.9 KiB
JavaScript
|
|
Ext.define('MsSysUpdateSql', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'SQLVER', type: 'string' },
|
|
{ name: 'SORT', type: 'string' },
|
|
{ name: 'SQLTEXT', type: 'string' },
|
|
{ name: 'UPSTATUS', type: 'string' },
|
|
{ name: 'UPFILES', 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('MsSysUpdateSqlTbl', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'VERGID', type: 'string' },
|
|
{ name: 'TBLGID', type: 'string' },
|
|
{ name: 'TBLNAME', type: 'string' },
|
|
{ name: 'REMARKS', type: 'string' },
|
|
{ name: 'INPUTBY', type: 'string' },
|
|
{ name: 'INPUTBYREF', type: 'string' },
|
|
{ name: 'INPUTTIME', type: 'string' },
|
|
]
|
|
});
|
|
|
|
|
|
Ext.define('MsSysTbl', {
|
|
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: 'NEWTBLSQL', type: 'string' }
|
|
]
|
|
});
|
|
|