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/SoftMng/Viewsjs/SingleAudit/SingleModel.js

33 lines
1.5 KiB
JavaScript

Ext.define('SingleListModel', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'CustomMaster', type: 'string' },//申报地海关
{ name: 'SeqNo', type: 'string' },//统一编号
{ name: 'IEPort', type: 'string' },//出境关别
{ name: 'ManualNo', type: 'string' },//备案号
{ name: 'ContrNo', type: 'string' },//合同协议号
{ name: 'IEDate', type: 'string' },//出口日期
{ name: 'DDate', type: 'string' },//申报日期
{ name: 'TradeCoScc', type: 'string' },//境内发货人
{ name: 'TradeName', type: 'string' },//企业名称
{ name: 'OverseasConsigneeCode', type: 'string' },//境外发货人
{ name: 'OwnerCodeScc', type: 'string' },//生产销售单位
{ name: 'AgentName', type: 'string' },//申报单位
{ name: 'BillNo', type: 'string' },//提运单号
{ name: 'BSNO', type: 'string' },//关联报关单号
{ name: 'CUSTNO', type: 'string' },//委托单号
{ name: 'CUSTOMNO', type: 'string' },//报关单号
{ name: 'CUSTOMERNAME', type: 'string' },//委托单位
{ name: 'MBLNO', type: 'string' },//提单号
{ name: 'VESSEL', type: 'string' },//船名
{ name: 'VOYNO', type: 'string' },//航次
{ name: 'COMPOP', type: 'string' },//航次
{ name: 'COMPTIME', type: 'string' },//航次
{ name: 'ETD', type: 'string' },//开船日期
{ name: 'ETA', type: 'string' }//到港日期
]
});