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.
26 lines
1002 B
JavaScript
26 lines
1002 B
JavaScript
Ext.define('MsOpStatus', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'ST_ID',
|
|
fields: [
|
|
{ name: 'ST_ID', type: 'string' },
|
|
{ name: 'BSNO', type: 'string' },
|
|
{ name: 'STATUS', type: 'string' },
|
|
{ name: 'ISCOMP', type: 'bool' },
|
|
{ name: 'ISOPEN', type: 'string' },
|
|
{ name: 'ISOPENREF', type: 'string' },
|
|
{ name: 'COMPTIME', type: 'date', dateFormat: 'Y-m-d H:i:s' },
|
|
{ name: 'COMPOP', type: 'string' },
|
|
{ name: 'INPUTBY', type: 'string' },
|
|
{ name: 'INPUTTIME', type: 'string' },
|
|
{ name: 'OPTIME', type: 'string' },
|
|
{ name: 'REMARK', type: 'string' },
|
|
{ name: 'STATUS_OPSEAE', type: 'string' },
|
|
{ name: 'ORDNO', type: 'number' },
|
|
{ name: 'STTYPE', type: 'string' },
|
|
{ name: 'STTYPESTR', type: 'string' }
|
|
|
|
]
|
|
});
|
|
|
|
|