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.
17 lines
660 B
JavaScript
17 lines
660 B
JavaScript
Ext.define('MsLsKc', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'SerialNo',
|
|
fields: [
|
|
{ name: 'SerialNo', type: 'number' },
|
|
{ name: 'OrgCode', type: 'string' },
|
|
{ name: 'OrgCode_Ref', type: 'string' },
|
|
{ name: 'CkCode', type: 'string' },
|
|
{ name: 'CkCode_Ref', type: 'string' },
|
|
{ name: 'PluCode', type: 'string' },
|
|
{ name: 'PluCode_Ref', type: 'string' },
|
|
{ name: 'JxCount', type: 'number' },
|
|
{ name: 'JxTotal', type: 'number' },
|
|
{ name: 'CodeAndName', type: 'string' }
|
|
]
|
|
});
|