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' } ] });