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.
DS7/DSWeb/Areas/MvcShipping/Viewsjs/MsStevedores/MsStevedoresModel.js

16 lines
595 B
JavaScript

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