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.
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
Ext.define('MsOpAuditDetail', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'ADID',
|
|
fields: [
|
|
{ name: 'ADID', type: 'string' },
|
|
{ name: 'BSNO', type: 'string' },
|
|
{ name: 'ERRDATA', type: 'string' },
|
|
{ name: 'OPREMARK', type: 'string' },
|
|
{ name: 'ERRMSG', type: 'string' },
|
|
{ name: 'AUDITTYPE', type: 'string' },
|
|
{ name: 'CREATEUSER', type: 'string' },
|
|
{ name: 'CREATEUSERREF', type: 'string' },
|
|
{ name: 'CREATETIME', type: 'string' },
|
|
{ name: 'SORT', type: 'number' }
|
|
|
|
]
|
|
});
|
|
|
|
|
|
Ext.define('MsOpAuditLog', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'ADLGID',
|
|
fields: [
|
|
{ name: 'ADLGID', type: 'string' },
|
|
{ name: 'BSNO', type: 'string' },
|
|
{ name: 'ERRMSG', type: 'string' },
|
|
{ name: 'ERROP', type: 'string' },
|
|
{ name: 'AUDITREMARK', type: 'string' },
|
|
{ name: 'AUDITUSER', type: 'string' },
|
|
{ name: 'AUDITUSERREF', type: 'string' },
|
|
{ name: 'AUDITTIME', type: 'string' },
|
|
{ name: 'SORT', type: 'number' }
|
|
|
|
]
|
|
}); |