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/MsOpCtnStatus/MsOpCtnStatusModel.js

32 lines
1.3 KiB
JavaScript

Ext.define('MsCtnStatus', {
extend: 'Ext.data.Model',
idProperty: 'b_id',
fields: [
{ name: 'b_id', type: 'number' },
{ name: 'box_no', type: 'string' },
{ name: 'blno', type: 'string' },
{ name: 'vessel', type: 'string' },
{ name: 'voyage', type: 'string' },
{ name: 'etd', type: 'string' },
{ name: 'reachtime', type: 'string' },
{ name: 'opertime', type: 'string' },
{ name: 'position', type: 'string' },
{ name: 'state', type: 'number' },
{ name: 'stateref', type: 'string' },
{ name: 'operman', type: 'string' },
{ name: 'positionname', type: 'string' },
{ name: 'fobport', type: 'string' },
{ name: 'fobportname', type: 'string' },
{ name: 'cnsource', type: 'string' },
{ name: 'cntrsize', type: 'string' },
{ name: 'Remarks', type: 'string' },
{ name: 'ONEWAY', type: 'string' },
{ name: 'jcyy', type: 'string' },
{ name: 'cz', type: 'string' },
{ name: 'cctime', type: 'string' },
{ name: 'jctime', type: 'string' },
{ name: 'sdzt', type: 'string' }
]
});