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.
21 lines
637 B
JavaScript
21 lines
637 B
JavaScript
Ext.define('MsContainerSetCtnEntity', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'CORPID',
|
|
fields: [
|
|
{ name: 'CORPID', type: 'string' },
|
|
{ name: 'ID', type: 'string' },
|
|
{ name: 'CNT1', type: 'string' },
|
|
{ name: 'CNT2', type: 'string' },
|
|
{ name: 'CNT3', type: 'string' },
|
|
{ name: 'CNT4', type: 'string' },
|
|
{ name: 'CNT5', type: 'string' },
|
|
{ name: 'CNT6', type: 'string' },
|
|
{ name: 'CNT7', type: 'string' },
|
|
{ name: 'CNT8', type: 'string' },
|
|
{ name: 'CNT9', type: 'string' },
|
|
{ name: 'CNT10', type: 'string' }
|
|
|
|
]
|
|
});
|
|
|