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.
16 lines
595 B
JavaScript
16 lines
595 B
JavaScript
Ext.define('MsStevedoresModel', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'NAME', type: 'string' },
|
|
{ name: 'CODE', type: 'string' },
|
|
{ name: 'PHONE', type: 'string' },
|
|
{ name: 'OTHER', type: 'string' },
|
|
{ name: 'UpdateTime', type: 'string' },
|
|
{ name: 'DELFLAG', type: 'string' },
|
|
{ name: 'PriceJian', type: 'string' },
|
|
{ name: 'PriceLiangTon', type: 'string' }
|
|
]
|
|
});
|