Browse Source

Merge branch 'master' of http://47.101.159.18:3000/Muchinfo/Configuration

huangbin 4 years ago
parent
commit
db6fa8116f

+ 2238 - 0
ERMCP/Mobile/fxgl_v3_mobile_table_define.sql

@@ -0,0 +1,2238 @@
+set feedback off
+
+-- 删除所有客户端字段记录
+delete from TableColumnConfig t where t.tablekey in (select d.tablekey from TableDefine d where d.tabletype = 3);
+-- 删除所有客户端表记录
+delete from TableDefine t where t.tabletype = 3;
+
+-- ColumnWidth 默认为0,WEB交易端自己设置宽度,如果表里赋了值则使用表的宽度
+-- AlignType 对齐方式 - 1:居中对齐 2:左对齐 3:右对齐
+
+-- 客户资料
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_userinfo', 3, '客户资料', '', '手机端-客户资料');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'userinfotype', '客户类型', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'customername', '客户名称', '0', 20, 1, 1, '', '', 'customername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'mobile', '联系人手机', '0', 30, 1, 1, '', '', 'mobile', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'statusdesc', '状态', '0', 40, 1, 3, '', '', 'statusdesc', 0, 0, '');
+
+-- 套保计划 --
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgeplan', 3, '套保计划', '', '手机端-套保计划');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'contracttype,hedgeplanno', '计划类型\n计划名称 ', '0', 10, 1, 1, '', '', 'contracttype,hedgeplanno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'deliverygoodsname,wrstandardname', '现货商品', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'convertfactor,planqty', '计划量 ', '0', 30, 1, 1, '', '', 'convertfactor,planqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'tradeusername,hedgeplanstatus', '\n状态', '0', 40, 1, 3, '', '', 'tradeusername,hedgeplanstatus', 0, 0, '');
+
+-- 现货-采购合同--待点价
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_purchase_pointprice', 3, '现货-采购合同--待点价', '', '手机端-现货-采购合同--待点价');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'accountname,contractno', '销售方\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'goodscode,pricemove', '点价合约\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'qty,unpricedqty', '合同量\n未定价量 ', '0', 40, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'pricedqty,unsureqty', '已定价量\n未交收量 ', '0', 50, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'payamount,unpayAmount', '已付款额\n应付款额 ', '0', 60, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'invoiceamount,daikaiAmount', '已收票额\n应收票额 ', '0', 70, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期\n交收期 ', '0', 80, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
+
+-- 现货-采购合同--待交收
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_purchase_settle', 3, '现货-采购合同--待交收', '', '手机端-现货-采购合同--待交收');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'accountname,contractno', '销售方\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'goodscode,pricemove', '点价合约\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'pricedqty,unsureqty', '已定价量\n未交收量 ', '0', 40, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'payamount,unpayAmount', '已付款额\n应付款额 ', '0', 50, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'invoiceamount,daikaiAmount', '已收票额\n应收票额 ', '0', 60, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期\n交收期 ', '0', 70, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'qty,unpricedqty', '合同量\n未定价量 ', '0', 80, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
+
+-- 现货-采购\销售合同-新增合同
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotcontract_new', 3, '新增合同', '', '现货-采购合同-新增合同');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'contractno,contracttype,contracctstatus', '合同编号/\n状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'nickname,qty', '对手方/\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'deliverygoodsname,wrstandardname', '现货品种/\n商品 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'biztype,convertfactor', '业务类型/\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'pricetype,goodsname', '定价类型/\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'price,pricemove', '价格/\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'amount,margin', '金额/\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'amount,margin', '点价期/\n交收期 ', '0', 80, 1, 1, '', '', 'amount,margin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'amount,margin', '业务员/\n跟单员 ', '0', 90, 1, 1, '', '', 'amount,margin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'meruserlogincode,saleuserlogincode', '交易用户/\n结算币种 ', '0', 100, 1, 1, '', '', 'meruserlogincode,saleuserlogincode', 0, 0, '');
+
+-- 现货-采购\销售合同-已完成
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotcontract_complete', 3, '已完成', '', '手机端-现货-采购合同-已完成');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'contractno,contracttype,contracctstatus', '合同编号\n状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'nickname,qty', '对手方\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'biztype,convertfactor', '产品类型\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'pricetype,goodsname', '定价类型\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'price,pricemove', '价格\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '金额\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '点价期\n交收期 ', '0', 80, 1, 1, '', '', 'amount,margin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '业务类型\n交易用户 ', '0', 90, 1, 1, '', '', 'amount,margin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '业务员\n跟单员 ', '0', 100, 1, 1, '', '', 'amount,margin', 0, 0, '');
+
+-- 现货—期现关联-关联记录
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contract_linklog', 3, '现货—合同详情-关联记录', '', '手机端-现货—合同详情-关联记录');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '关联时间\n成交时间 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '业务类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '订单类型 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '套保品种\n现货关联数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '关联方式\n关联状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '期货单号 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+-- 现货-销售合同--待点价
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_sales_pointprice', 3, '销售_待点价', '', '手机端-销售-待点价');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'accountname,contractno', '采购方\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'goodscode,pricemove', '点价合约\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'qty,unpricedqty', '合同量\n未定价量 ', '0', 40, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'pricedqty,unsureqty', '已定价量\n未交收量 ', '0', 50, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'payamount,unpayAmount', '已收款额\n应收款额 ', '0', 60, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'invoiceamount,daikaiAmount', '已开票额\n应开票额 ', '0', 70, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期\n交收期 ', '0', 80, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
+
+-- 现货-销售合同--待交收
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_sales_settle', 3, '现货-销售合同--待交收', '', '手机端-现货-销售合同--待交收');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'accountname,contractno', '采购方/\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'deliverygoodsname,wrstandardname', '现货品种/\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'goodscode,pricemove', '点价合约/\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'pricedqty,unsureqty', '已定价量/\n未交收量 ', '0', 40, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'payamount,unpayAmount', '已收款额/\n应收款额 ', '0', 50, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'invoiceamount,daikaiAmount', '已开票额/\n应开票额 ', '0', 60, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期/\n交收期 ', '0', 70, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'qty,unpricedqty', '合同量/\n未定价量 ', '0', 80, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
+
+-- 现货审核-合同审核-待审核
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotadiit_contract_unaduit', 3, '待审核', '', '手机端-现货审核-合同审核-待审核');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'contractno,contracttype,contracctstatus', '合同编号/\n类型/状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'nickname,qty', '对手方/\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'deliverygoodsname,wrstandardname', '现货品种/\n商品 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'biztype,convertfactor', '业务类型/\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'pricetype,goodsname', '定价类型/\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'price,pricemove', '价格/\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'amount,margin', '金额/\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'startdate,enddate,deliverystartdate,deliveryenddate', '点价期/\n交收期 ', '0', 80, 1, 1, '', '', 'startdate,enddate,deliverystartdate,deliveryenddate', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'meruserlogincode,saleuserlogincode', '业务员/\n跟单员 ', '0', 90, 1, 1, '', '', 'meruserlogincode,saleuserlogincode', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'tradeusername,currencyname', '交易用户/\n结算币种 ', '0', 100, 1, 1, '', '', 'tradeusername,currencyname', 0, 0, '');
+
+-- 现货审核-合同审核-已审核
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotadiit_contract_aduited', 3, '待审核', '', '手机端-现货审核-合同审核-已审核');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'contractno,contracttype,contracctstatus', '合同编号/\n类型/状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'nickname,qty', '对手方/\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'deliverygoodsname,wrstandardname', '现货品种/\n商品型号 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'biztype,convertfactor', '产品类型/\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'pricetype,goodsname', '定价类型/\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'price,pricemove', '价格/\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'amount,margin', '金额/\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'amount,margin', '业务类型/\n交易用户 ', '0', 80, 1, 1, '', '', 'amount,margin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'meruserlogincode,saleuserlogincode', '业务员/\n跟单员 ', '0', 90, 1, 1, '', '', 'meruserlogincode,saleuserlogincode', 0, 0, '');
+
+-- 库存管理-当前库存
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_manage_current', 3, '库存管理-当前库存', '', '手机端-库存管理-当前库存');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '现货品种', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '商品/\n品牌', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '昨日量/\n今日量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '今日入库量/\n今日出库量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 库存管理-当前库存-入库明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_indetail', 3, '库存管理-当前库存-入库明细', '', '手机端-库存管理-当前库存-入库明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '入库登记时间/\n入库审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '商品/\n品牌', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '入库类型/\n入库数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '合同编号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '入库登记人/\n入库审核人', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 库存管理-当前库存-出库明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_outdetail', 3, '库存管理-当前库存-出库明细', '', '手机端-库存管理-当前库存-出库明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '出库登记时间/\n出库审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '商品/\n品牌', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '出库类型/\n出库数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '合同编号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '出库登记人/\n出库审核人', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 库存管理-申请记录
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_manage_applylog', 3, '库存管理-当前库存', '', '手机端-库存管理-当前库存');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '登记时间/\n审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '现货品种', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '类型/\n数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '合同编号', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '商品/\n品牌', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '仓库', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '申请人/\n审核人', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 库存审核
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_aduit', 3, '库存审核', '', '手机端-库存审核');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '登记时间/\n审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '现货品种', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '类型/\n数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '商品/\n品牌', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '仓库', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '合同编号', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '申请人/\n审核人', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 业务审核-点价
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_business_aduit_dj', 3, '业务审核-点价', '', '手机端-业务审核-点价');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'applytime,audittime', '点价登记时间/\n点价审核时间', '0', 10, 1, 1, '', '', 'applytime,audittime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'contracttype,contractno', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'contracttype,contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'pricedPrice,amount', '点价价格/\n点价金额', '0', 30, 1, 1, '', '', 'pricedPrice,amount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'contractstatus', '状态', '0', 40, 1, 1, '', '', 'contractstatus', 0, 0, '');
+
+-- 业务审核-交收
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_business_aduit_js', 3, '业务审核-交收', '', '手机端-业务审核-交收');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'applytime,audittime', '结算登记时间/\n结算审核时间', '0', 10, 1, 1, '', '', 'applytime,audittime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'contracttype,contractno', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'contracttype,contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'reckonrealqty,reckonotheramount', '交收量/\n其他费用', '0', 30, 1, 1, '', '', 'reckonrealqty,reckonotheramount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'addmargin,reckonadjustamount', '调整保证金/\n调整金额', '0', 40, 1, 1, '', '', 'addmargin,reckonadjustamount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'contractstatus', '状态', '0', 50, 1, 1, '', '', 'contractstatus', 0, 0, '');
+
+-- 财务审核-发票
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fincial_aduit_fp', 3, '业务审核-发票', '', '手机端-业务审核-发票');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '发票登记时间/\n发票审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '类型/\n金额', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 财务审核-款项
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fincial_aduit_kx', 3, '财务审核-款项', '', '手机端-财务审核-款项');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '款项登记时间/\n款项审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '类型/\n金额', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+--********************************************************************报表查询***************************************************************--
+-- 报表-敞口报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose', 3, '报表-敞口报表', '', '手机端-报表-敞口报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'middlegoodsname', '套保品种 ', '0', 10, 1, 1, '', '', 'middlegoodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'hedgeqty,arbitrageqty', '套保量/\n 套利量 ', '0', 20, 1, 1, '', '', 'hedgeqty,arbitrageqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalspotqty,diffspotqty', '现货总量/\n 变动量 ', '0', 30, 1, 1, '', '', 'totalspotqty,diffspotqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'diffmgqtya,diffmgqtyb', '套保变动量/\n 套利变动量 ', '0', 40, 1, 1, '', '', 'diffmgqtya,diffmgqtyb', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'mgneedhedgeratio,needarbitrageratio', '套保比例/\n 套利比例 ', '0', 50, 1, 1, '', '', 'mgneedhedgeratio,needarbitrageratio', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'needhedgeqty,needarbitrageqty', '应套保量/\n 应套利量 ', '0', 60, 1, 1, '', '', 'needhedgeqty,needarbitrageqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalneedhedgeqty,diffhedgeqty', '现货应套保总量/\n 变动量 ', '0', 70, 1, 1, '', '', 'totalneedhedgeqty,diffhedgeqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalfutureqty,difffutuqty', '期货总量/\n 变动量 ', '0', 80, 1, 1, '', '', 'totalfutureqty,difffutuqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'needhedgeexposoure,diffexposure', '套保敞口/\n 变动量 ', '0', 90, 1, 1, '', '', 'needhedgeexposoure,diffexposure', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalexposure,diffqty', '总敞口/\n 变动量 ', '0', 100, 1, 1, '', '', 'totalexposure,diffqty', 0, 0, '');
+
+-- 报表-敞口报表-现货合同变动量明细-日报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_spotcontract_day', 3, '报表-敞口报表-现货合同变动量明细-日报表', '', '手机端-报表-敞口报表-现货合同变动量明细-日报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '合同编号/\n 合同类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '采购方/\n 销售方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '现货品种/\n 现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '期现用途/\n 今定价量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '套保品种/\n 套保变动量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '应套保变动量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-敞口报表-现货合同变动量明细-周月报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_spotcontract_weekmonth', 3, '报表-敞口报表-现货合同变动量明细-周月报表', '', '手机端-报表-敞口报表-现货合同变动量明细-周月报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '合同编号/\n 合同类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '采购方/\n 销售方 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '现货品种/\n 现货商品 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '期现用途/\n 今定价量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '套保品种/\n 套保变动量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '应套保变动量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-敞口报表-套保计划变动量明细-日报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_hedgeplan_day', 3, '报表-敞口报表-套保计划变动量明细-日报表', '', '手机端-报表-敞口报表-套保计划变动量明细-日报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'contracttype,hedgeplanno', '计划类型/\n 计划名称 ', '0', 10, 1, 1, '', '', 'contracttype,hedgeplanno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'deliverygoodsname,middlegoodsname', '现货品种/\n 套保品种 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,middlegoodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'wrstandardname,qty', '现货商品/\n 计划量 ', '0', 30, 1, 1, '', '', 'wrstandardname,qty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'diffqty,changqty', '套保品种今变动量/\n 应套保总量变动量 ', '0', 40, 1, 1, '', '', 'diffqty,changqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'biztype,tradedate', '期现用途/\n 登记日 ', '0', 50, 1, 1, '', '', 'biztype,tradedate', 0, 0, '');
+
+-- 报表-敞口报表-套保计划变动量明细-周月报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_hedgeplan_weekmonth', 3, '报表-敞口报表-套保计划变动量明细-周月报表', '', '手机端-报表-敞口报表-套保计划变动量明细-周月报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'tradedate', '日期', '0', 10, 1, 1, '', '', 'tradedate', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'contracttype,hedgeplanno', '计划类型/\n 计划名称 ', '0', 20, 1, 1, '', '', 'contracttype,hedgeplanno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'deliverygoodsname,middlegoodsname', '现货品种/\n 套保品种 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,middlegoodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'wrstandardname,qty', '现货商品/\n 计划量 ', '0', 40, 1, 1, '', '', 'wrstandardname,qty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'diffqty,changqty', '套保品种今变动量/\n 应套保总量变动量 ', '0', 50, 1, 1, '', '', 'diffqty,changqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'biztype,tradedate', '期现用途/\n 登记日 ', '0', 60, 1, 1, '', '', 'biztype,tradedate', 0, 0, '');
+
+-- 报表-敞口报表-期货变动量明细-日报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_futures_day', 3, '报表-敞口报表-期货变动量明细-日报表', '', '手机端-报表-敞口报表-期货变动量明细-日报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '交易账户/\n 交易品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '交易合约/\n 方向 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '期初持仓量/\n 期末持仓量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '今开仓量/\n 今平仓量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '交易品种今变化量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '套保品种/\n套保品种今变化量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-敞口报表-期货变动量明细-周月报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_futures_weekmonth', 3, '报表-敞口报表-期货变动量明细-周月报表', '', '手机端-报表-敞口报表-期货变动量明细-周月报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '交易账户/\n 交易品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '交易合约/\n 方向 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '期初持仓量/\n 期末持仓量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '今开仓量/\n 今平仓量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '交易品种今变化量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '套保品种/\n套保品种今变化量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-敞口报表-参数调整变动量明细-日报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_adjust_day', 3, '报表-敞口报表-参数调整变动量明细-日报表', '', '手机端-报表-敞口报表-参数调整变动量明细-日报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '套保品种/\n 参数类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '调整前参数值/\n 调整后参数值 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '套保总量/\n 应套保总量变化量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '调整前应套保总量/\n 调整后应套保总量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-敞口报表-参数调整变动量明细-周月报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_adjust_weekmonth', 3, '报表-敞口报表-参数调整变动量明细-周月报表', '', '手机端-报表-敞口报表-参数调整变动量明细-周月报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '套保品种/\n 参数类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '调整前参数值/\n 调整后参数值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '套保总量/\n 应套保总量变化量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '调整前应套保总量/\n 调整后应套保总量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-现货报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_spot', 3, '报表-现货报表', '', '手机端-报表-现货报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'currencyname,deliverygoodsname', '结算币种/\n 现货品种', '0', 10, 1, 1, '', '', 'currencyname,deliverygoodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'oriqty,curqty', '期初量/\n 期末量 ', '0', 30, 1, 1, '', '', 'oriqty,curqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'todaybuyqty,todaysellqty', '今采购量/\n 今销售量 ', '0', 40, 1, 1, '', '', 'todaybuyqty,todaysellqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'oriamount,curamount', '期初额/\n 期末额 ', '0', 50, 1, 1, '', '', 'oriamount,curamount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'oriaverageprice,curaverageprice', '期初均价/\n 期末均价 ', '0', 60, 1, 1, '', '', 'oriaverageprice,curaverageprice', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'todaybuyamount,todaysellamount', '今采购额/\n 今销售额 ', '0', 70, 1, 1, '', '', 'todaybuyamount,todaysellamount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'todaybuyaverageprice,todaysellaverageprice', '采购均价/\n 销售均价 ', '0', 80, 1, 1, '', '', 'todaybuyaverageprice,todaysellaverageprice', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'actualpl,floatpl', '现货损益/\n 浮动损益 ', '0', 90, 1, 1, '', '', 'actualpl,floatpl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'curspotprice,curmarketvalue', '期末市值 ', '0', 100, 1, 1, '', '', 'curspotprice,curmarketvalue', 0, 0, '');
+
+-- 报表-现货报表-日报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_spot_daydetail', 3, '报表-现货报表-日报表明细', '', '手机端-报表-现货报表-日报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '结算币种/\n 现货品种', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '期初量/\n 期末量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '今采购量/\n 今销售量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '期初额/\n 期末额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '期初均价/\n 期末均价 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '今采购额/\n 今销售额 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '采购均价/\n 销售均价 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '现货损益/\n 浮动损益 ', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '最新价/\n 期末市值 ', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-现货报表-周月报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_spot_weekmonthdetail', 3, '报表-现货报表-周月报表明细', '', '手机端-报表-现货报表-周月报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '结算币种/\n 现货品种', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '期初量/\n 期末量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '今采购量/\n 今销售量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '期初额/\n 期末额 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '期初均价/\n 期末均价 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '今采购额/\n 今销售额 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '采购均价/\n 销售均价 ', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '现货损益/\n 浮动损益 ', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '最新价/\n 期末市值 ', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-财务报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial', 3, '报表-财务报表', '', '手机端-报表-财务报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'currencyname', '结算币种', '0', 10, 1, 1, '', '', 'currencyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buytodaysettleamount,buytodayrefundamount', '今付货款额/\n 今收退款额 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'selltodaysettleamount,buyunpaidamount', '今收货款额/\n 今付退款额 ', '0', 30, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buytodayinvoiceamount,selltodayinvoiceamount', '今收票额/\n 今开票额', '0', 40, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buyprepaidamount,buyunpaidamount', '预付货款额/\n 应付货款额', '0', 50, 1, 1, '', '', 'buyprepaidamount,buyunpaidamount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buypreinvoicedamount,buyuninvoicedamount', '预收票额/\n 应收票额', '0', 60, 1, 1, '', '', 'buypreinvoicedamount,buyuninvoicedamount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'sellprepaidamount,sellunpaidamount', '预收货款额/\n 应收货款额', '0', 70, 1, 1, '', '', 'sellprepaidamount,sellunpaidamount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'sellpreinvoicedamount,selluninvoicedamount', '预开票额/\n 应开票额', '0', 80, 1, 1, '', '', 'sellpreinvoicedamount,selluninvoicedamount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'todayreceivesum,todaypaysum', '今收款合计/\n 今付款合计', '0', 90, 1, 1, '', '', 'todayreceivesum,todaypaysum', 0, 0, '');
+
+-- 报表-财务报表-商品日报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_wrstandard_daydetail', 3, '报表-财务报表-商品日报表明细', '', '手机端-报表-财务报表-商品日报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'logdatetime', '结算币种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'logtypename,relatedno', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '今收票额/\n 今开票额', '0', 50, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预付货款额/\n 应付货款额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预收票额/\n 应收票额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预收货款额/\n 应收货款额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预开票额/\n 应开票额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '今收款合计/\n 今付款合计', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
+
+-- 报表-财务报表-商品周月报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_wrstandard_weekmonthdetail', 3, '报表-财务报表-商品周月报表明细', '', '手机端-报表-财务报表-商品日报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'logdatetime', '日期/\n结算币种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'logtypename,relatedno', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '今收票额/\n 今开票额', '0', 50, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预付货款额/\n 应付货款额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预收票额/\n 应收票额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预收货款额/\n 应收货款额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预开票额/\n 应开票额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '今收款合计/\n 今付款合计', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
+
+-- 报表-财务报表-品牌日报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_brand_daydetail', 3, '报表-财务报表-品牌日报表明细', '', '手机端-报表-财务报表-品牌日报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'logdatetime', '结算币种/\n现货品种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'logtypename,relatedno', '现货商品/\n 现货品牌 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '今收票额/\n 今开票额', '0', 50, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预付货款额/\n 应付货款额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预收票额/\n 应收票额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预收货款额/\n 应收货款额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预开票额/\n 应开票额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '今收款合计/\n 今付款合计', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
+
+-- 报表-财务报表-品牌周月报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_brand_weekmonthdetail', 3, '报表-财务报表-商品周月报表明细', '', '手机端-报表-财务报表-商品日报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logdatetime', '日期/\n结算币种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logtypename,relatedno', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logtypename,relatedno', '现货品牌', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 40, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '今收票额/\n 今开票额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预付货款额/\n 应付货款额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预收票额/\n 应收票额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预收货款额/\n 应收贷货款额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预开票额/\n 应开票额', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '今收款合计/\n 今付款合计', '0', 110, 1, 1, '', '', 'applyname', 0, 0, '');
+
+-- 报表-汇总损益报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_sumprofit', 3, '报表-汇总损益报表', '', '手机端-报表-汇总损益报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'currencyname', '结算币种', '0', 10, 1, 1, '', '', 'currencyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'spotactualpl,spotfloatpl', '套保品种/\n 单位 ', '0', 20, 1, 1, '', '', 'spotactualpl,spotfloatpl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'futureactualpl,futurefloatpl', '现货总量/\n 计划套保量 ', '0', 30, 1, 1, '', '', 'futureactualpl,futurefloatpl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '期货持仓量/\n 期现比例', '0', 40, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '现货损益/\n 现货浮动损益', '0', 50, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '期货损益/\n 期货浮动损益', '0', 60, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '总敞口损益/\n 套保敞口损益', '0', 70, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
+
+-- 报表-汇总损益报表-周月报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_sumprofit_weekmonthdetail', 3, '报表-汇总损益报表-周月报表明细', '', '手机端-报表-汇总损益报表-周月报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logdatetime', '日期 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logdatetime', '结算币种/\n 套保品种 ', '0', 20, 1, 1, '', '', 'logdatetime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logtypename,relatedno', '现货总量/\n 计划套保量 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logtypename,relatedno', '期货持仓量/\n 期现比例 ', '0', 40, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logvalue', '现货损益/\n 现货浮动损益 ', '0', 50, 1, 1, '', '', 'logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'sumactualpl,sumpl', '期货损益/\n 期货浮动损益', '0', 60, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'sumactualpl,sumpl', '总敞口损益/\n 套保敞口损益', '0', 70, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'sumactualpl,sumpl', '单位', '0', 80, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
+
+-- 报表-期货报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_futures', 3, '报表-期货报表', '', '手机端-报表-期货报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'logdatetime', '结算币种/\n 交易品种 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'logtypename,relatedno', '交易合约/\n 方向 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'logtypename,relatedno', '期初持仓量/\n 期末持仓量 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '今开仓量/\n 今平仓量 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '期初开仓额/\n 期末开仓额 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '期初持仓额/\n 期末持仓额 ', '0', 60, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '今开仓额/\n 今平仓额 ', '0', 70, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '开仓均价/\n 平仓均价 ', '0', 80, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '结算价/\n 结算持仓额 ', '0', 90, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '平仓损益/\n 结算损益 ', '0', 100, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '手续费/\n 交易品种期末量 ', '0', 110, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '套保品种/\n 套保品种变动量 ', '0', 120, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+
+-- 报表-期货报表_账户明细-日报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_futures_daydetail', 3, '报表-期货报表_账户明细_日报表', '', '手机端-报表-期货报表_账户明细_日报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'logdatetime', '交易账户/\n 结算币种 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'logtypename,relatedno', '交易品种/\n 交易合约/方向 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'logtypename,relatedno', '期初持仓量/\n 期末持仓量 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '今开仓量/\n 今平仓量 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '期初开仓额/\n 期末开仓额 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '期初持仓额/\n 期末持仓额 ', '0', 60, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '今开仓额/\n 今平仓额 ', '0', 70, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '开仓均价/\n 平仓均价 ', '0', 80, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '结算价/\n 结算持仓额 ', '0', 90, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '平仓损益/\n 结算损益 ', '0', 100, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '手续费/\n 交易品种期末量 ', '0', 110, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '套保品种/\n 套保品种变动量 ', '0', 120, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+
+-- 报表-期货报表_账户明细-周月报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_futures_weekmonthdetail', 3, '报表-期货报表_账户明细_周月报表', '', '手机端-报表-期货报表_账户明细_周月报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logdatetime', '日期 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logdatetime', '交易账户/\n 结算币种 ', '0', 20, 1, 1, '', '', 'logdatetime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logtypename,relatedno', '交易品种/\n 交易合约/方向 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logtypename,relatedno', '期初持仓量/\n 期末持仓量 ', '0', 40, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '今开仓量/\n 今平仓量 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '期初开仓额/\n 期末开仓额 ', '0', 60, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '期初持仓额/\n 期末持仓额 ', '0', 70, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '今开仓额/\n 今平仓额 ', '0', 80, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '开仓均价/\n 平仓均价 ', '0', 90, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '结算价/\n 结算持仓额 ', '0', 100, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '平仓损益/\n 结算损益 ', '0', 110, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '手续费/\n 交易品种期末量 ', '0', 120, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '套保品种/\n 套保品种变动量 ', '0', 130, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
+
+-- 报表-库存报表(商品维度)
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock', 3, '报表-库存报表(商品维度)', '', '手机端-报表-库存报表(商品维度)');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'deliverygoodsname,wrstandardname', '现货品种/\n 现货商品 ', '0', 10, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'diffqty', '库存变化量 ', '0', 20, 1, 1, '', '', 'diffqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'oristock,curstock', '期初库存量/\n 期末库存量 ', '0', 30, 1, 1, '', '', 'oristock,curstock', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'todaybuyinqty,todayselloutqty', '采购入库量/\n 销售出库量 ', '0', 40, 1, 1, '', '', 'todaybuyinqty,todayselloutqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'todayproduceinqty,todayproduceoutqty', '内部入库量/\n 内部出库量 ', '0', 50, 1, 1, '', '', 'todayproduceinqty,todayproduceoutqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'unbuyinqty,unselloutqty', '采购未入库量/\n 销售未出库量 ', '0', 60, 1, 1, '', '', 'unbuyinqty,unselloutqty', 0, 0, '');
+
+-- 报表-库存报表(商品维度)_仓库日报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_warehouse_daydetail', 3, '报表-库存报表(商品维度)_仓库日报表明细', '', '手机端-报表-库存报表(商品维度)_仓库日报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '现货品牌/\n仓库 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '库存变化量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '期初库存量/\n 期末库存量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '采购入库量/\n 销售出库量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-库存报表(商品维度)_仓库周月报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 3, '报表-库存报表(商品维度)_仓库周月报表明细', '', '手机端-报表-库存报表(商品维度)_仓库周月报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '日期 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetable_mobile_report_wrstandstock_warehouse_weekmonthdetailtail', 'userinfotype', '现货品牌/\n仓库 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '库存变化量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '期初库存量/\n 期末库存量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '采购入库量/\n 销售出库量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-库存报表-(商品维度)_品牌日报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_brand_daydetail', 3, '-报表-库存报表-品牌日报表明细', '', '手机端-报表-库存报表-品牌日报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '现货品牌/\n 库存变化量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '采购未入库量/\n 销售未出库量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-库存报表-(商品维度)_品牌周月报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_brand_weekmonthdetail', 3, '-报表-库存报表-品牌周月报表明细', '', '手机端-报表-库存报表-品牌周月报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '日期 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '现货品牌/\n 库存变化量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '采购未入库量/\n 销售未出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-库存报表-(仓库维度)
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_warehousestock', 3, '-报表-库存报表-(仓库维度)', '', '手机端-报表-库存报表-(仓库维度)');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'warehousename,deliverygoodsname', '仓库/\n 现货品种 ', '0', 20, 1, 1, '', '', 'warehousename,deliverygoodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'wrstandardname,diffqty', '现货商品/\n 库存变化量 ', '0', 30, 1, 1, '', '', 'wrstandardname,diffqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'oristock,curstock', '期初库存量/\n 期末库存量', '0', 50, 1, 1, '', '', 'oristock,curstock', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'todaybuyinqty,todayselloutqty', '采购入库量/\n 销售出库量', '0', 60, 1, 1, '', '', 'todaybuyinqty,todayselloutqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'todayproduceinqty,todayproduceoutqty', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'todayproduceinqty,todayproduceoutqty', 0, 0, '');
+
+-- 报表-库存报表-(仓库维度)_日报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_warehousestock_daydetail', 3, '-报表-库存报表-(仓库维度)_日报表明细', '', '手机端-报表-库存报表-(仓库维度)_日报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '仓库/\n 现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '库存变化量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-库存报表-(仓库维度)_周月报表明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_warehousestock_weekmonthdetail', 3, '-报表-库存报表-(仓库维度)_周月报表明细', '', '手机端-报表-库存报表-(仓库维度)_周月报表明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '日期 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '仓库/\n 现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '库存变化量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 报表-定价报表
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_pricing', 3, '报表-定价报表', '', '手机端-报表-定价报表');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '交易对手方/\n现货类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '现货商品/\n 套保品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '期现价格差 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '期现数量差 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '今日定价均价/\n 今日定价量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '今日点价登记均价/\n 今日期货成交均价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '套保计划量/\n 今日期货关联成交量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '现货品种 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '合同编号/\n 日期 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- *******************************************************************************风管审核****************************************************************************** --
+-- 风管审核-增值税税率
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_taxrate', 3, '风管审核-增值税税率', '', '手机端-风管审核-增值税税率');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '原值%/\n新值% ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '申请时间 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 风管审核-折算系数
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_coefficient', 3, '风管审核-折算系数', '', '手机端-风管审核-折算系数');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '商品/\n套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '原值/\n新值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '申请时间 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 风管审核-成本权重
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_costweight', 3, '风管审核-成本权重', '', '手机端-风管审核-成本权重');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '商品/\n套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '原值/\n新值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '申请时间 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 风管审核-套保比例
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_hedgerate', 3, '风管审核-套保比例', '', '手机端-风管审核-套保比例');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_hedgerate', 'userinfotype', '套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_hedgerate', 'userinfotype', '原值%/\n新值% ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_hedgerate', 'userinfotype', '申请时间 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 现货商品-修改流水-增值税税率
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_delivery_log_taxrate', 3, '现货商品-修改流水-增值税税率', '', '手机端-现货商品-修改流水-增值税税率');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '申请时间/\n审核时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '修改前值%/\n修改后值% ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '申请人/\n审核人 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '审核备注 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 现货商品-修改流水-折算系数
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_delivery_log_coefficient', 3, '现货商品-修改流水-折算系数', '', '手机端-现货商品-修改流水-折算系数');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '商品/\n套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '申请时间/\n审核时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '修改前值/\n修改后值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '申请人/\n审核人 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '审核备注 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 现货商品-修改流水-成本权重
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_delivery_log_costweight', 3, '现货商品-修改流水-成本权重', '', '手机端-现货商品-修改流水-成本权重');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '申请时间/\n审核时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '修改前值%/\n修改后值% ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '申请人/\n审核人 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '审核备注 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- *******************************************************************************期现关联****************************************************************************** --
+-- 现货——期现关联-外部成交单关联
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotfuturerelate_outertradeorder', 3, '现货—期现关联-外部成交单关联', '', '手机端-现货—期现关联-外部成交单关联');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '合约名称/\n代码 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '成交时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '外部期货账号/\n方向 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '成交数量/\n成交价格 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '外部订单号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '结算币种 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '交易所 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 现货—期现关联-期现单据关联
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotfuturerelate_order', 3, '现货—期现关联-期现单据关联', '', '手机端-现货—期现关联-期现单据关联');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '合约名称\n代码 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '订单类型\n成交价格 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '成交数量\n已关联数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '期货单号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '用户名称 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '期货账户名称 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '期货账户代码 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 现货—期现关联-关联记录
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotfuturerelate_logs', 3, '现货—期现关联-关联记录', '', '手机端-现货—期现关联-关联记录');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '业务类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '关联数量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '现货编号 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '期货订单号 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '期货成交时间 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '用户名称 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '期货账户 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '合约名称\n代码 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '订单类型 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '成交数量 ', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '成交价格 ', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '关联时间 ', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '关联方式\n关联状态 ', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- *******************************************************************************敞口****************************************************************************** --
+-- 敞口--实时敞口
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_realtime', 3, '敞口--实时敞口', '', '手机端-敞口--实时敞口');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'middleGoodsName,middleGoodsCode', '套保品种\n 代码 ', '0', 10, 1, 1, '', '', 'middleGoodsName,middleGoodsCode', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'middleGoodsName,middleGoodsCode', '套保量\n 套利量 ', '0', 20, 1, 1, '', '', 'middleGoodsName,middleGoodsCode', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'totalNeedHedgeQty,totalFutureQty', '现货总量\n 变动量 ', '0', 30, 1, 1, '', '', 'totalNeedHedgeQty,totalFutureQty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'needHedgeExposoure,needHedgeRatio', '套保变动量\n 套利变动量 ', '0', 40, 1, 1, '', '', 'needHedgeExposoure,needHedgeRatio', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'totalExposure,totalHedgeRatio', '套保比例\n 套利比例 ', '0', 50, 1, 1, '', '', 'totalExposure,totalHedgeRatio', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalSpotQty,diffSpotQty', '应套保量\n 应套利量 ', '0', 60, 1, 1, '', '', 'oriTotalSpotQty,diffSpotQty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '现货应套保总量\n 变动量 ', '0', 70, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '期货总量\n 变动量 ', '0', 80, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '套保敞口\n 变动量 ', '0', 90, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '总敞口\n 变动量 ', '0', 100, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
+
+-- 敞口--现货头寸
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_spotposition', 3, '敞口--现货头寸', '', '手机端-敞口--现货头寸');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'wrstandardname,wrstandardcode', '现货商品 ', '0', 10, 1, 1, '', '', 'wrstandardname,wrstandardcode', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'oritoalspotqty', '昨日数量', '0', 20, 1, 1, '', '', 'oritoalspotqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'increaseqty,decreaseqty', '增加数量\n减少数量 ', '0', 30, 1, 1, '', '', 'increaseqty,decreaseqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'totalspotqty', '当前数量', '0', 40, 1, 1, '', '', 'totalspotqty', 0, 0, '');
+
+-- 敞口--期货头寸
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_futuresposition', 3, '敞口--期货头寸', '', '手机端-敞口--期货头寸');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'goodsname,goodscode', '期货合约\n代码 ', '0', 10, 1, 1, '', '', 'goodsname,goodscode', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'totalydqty', '昨日数量', '0', 20, 1, 1, '', '', 'totalydqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'increaseqty,decreaseqty', '增加数量\n减少数量 ', '0', 30, 1, 1, '', '', 'increaseqty,decreaseqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'totalcurqty', '当前数量', '0', 40, 1, 1, '', '', 'totalcurqty', 0, 0, '');
+
+-- 敞口--实时敞口--期货明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_futures_detail', 3, '敞口--实时敞口--期货明细', '', '手机端-敞口--实时敞口--期货明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'goodsname,goodscode', '期货合约\n代码 ', '0', 10, 1, 1, '', '', 'goodsname,goodscode', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'ydqty,curqty', '昨日持仓\n当前持仓 ', '0', 20, 1, 1, '', '', 'ydqty,curqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'diffqty', '持仓变动量', '0', 30, 1, 1, '', '', 'diffqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'diffhedgeqty', '(套保品种)\n变动量 ', '0', 40, 1, 1, '', '', 'diffhedgeqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'agreeunit,convertratio', '合约单位\n期货品种系数 ', '0', 50, 1, 1, '', '', 'agreeunit,convertratio', 0, 0, '');
+
+-- 敞口--实时敞口--现货明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_spot_detail', 3, '敞口--实时敞口--现货明细', '', '手机端-敞口--实时敞口--现货明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '时间\n类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '现货商品\n数量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '(套保品种)\n变动量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '合同(计划)编号 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '折算系数 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 敞口--现货头寸--现货明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_spotposition_detail', 3, '敞口--现货头寸--现货明细', '', '手机端-敞口--现货头寸--现货明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'strtime\nrelatedid', '时间\n编号 ', '0', 10, 1, 1, '', '', 'strtime\nrelatedid', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'contracttype', '类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'wrstandardname', '现货品种', '0', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'qty', '数量', '0', 40, 1, 1, '', '', 'qty', 0, 0, '');
+
+-- 敞口--期货头寸--期货明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_futuresposition_detail', 3, '敞口--现货头寸--期货明细', '', '手机端-敞口--现货头寸--期货明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '时间\n期货合约 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '方向', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '开平', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '数量(手)', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- *******************************************************************************资金查询****************************************************************************** --
+-- 资金查询--用户资金
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fundsearch_userinfo', 3, '资金查询--用户资金', '', '手机端-资金查询--用户资金');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '登录账号\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '客户类型\n名称 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '资金账号\n手机号码', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '期末余额\n期初余额', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '今日充值入金\n今日支付入金 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '今日全额平仓金额\n今日全额建仓金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '今日出金', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 资金查询--资金流水
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fundsearch_flow', 3, '资金查询--资金流水', '', '手机端-资金查询--资金流水');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '日期+时间\n结算币种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '所属机构\n用户名称 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '期货账户\n商品/代码', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '操作类型\n变动金额', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '变动前金额\n变动后金额 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '关联单号 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- *******************************************************************************套保查询****************************************************************************** --
+-- 套保查询--现货合同
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgesearch_spot', 3, '套保查询--现货合同', '', '手机端-套保查询--现货合同');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '日期+时间\n交易用户 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '合同编号\n合同类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '采购方\n销售方', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '现货品种\n现货商品', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '现货品牌\n期限用途 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '今定价量\n定价金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '均价\n套保品种 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '套保变动量\n应套保变动量 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 套保查询--套保计划
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgesearch_plan', 3, '套保查询--套保计划', '', '手机端-套保查询--套保计划');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '日期+时间\n交易用户 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '计划类型\n计划名称 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '现货品种\n套保品种', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '现货商品\n计划量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '套保品种变动量\n应套保总量变化量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '期限用途 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 套保查询--参数调整
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgesearch_adjust', 3, '套保查询--参数调整', '', '手机端-套保查询--参数调整');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '日期+时间 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '套保品种\n参数类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '调整前参数值\n调整后参数值', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '套保总量\n应套保总量变化量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '调整前应套保总量\n调整后应套保总量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- *******************************************************************************合同查询****************************************************************************** --
+-- 合同查询--点价记录
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_point', 3, '合同查询--点价记录', '', '手机端-合同查询--点价记录');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '现货品牌\n点价价格 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '升贴水\n点价数量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '点价金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '审核人\n登记人 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '登记时间 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 合同查询--交收记录
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_settle', 3, '合同查询--交收记录', '', '手机端-合同查询--交收记录');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '现货品牌\n交手量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '其他费用\n调整保证金 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '调整金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '审核人\n登记人 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '登记时间 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 合同查询--款项记录
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_payment', 3, '合同查询--款项记录', '', '手机端-合同查询--款项记录');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '现货品牌\n款项类型 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '金额 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 合同查询-- 发票记录
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_invoice', 3, '合同查询--发票记录', '', '手机端-合同查询--发票记录');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '现货品牌\n发票类型 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '金额 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 合同查询-- 入库记录
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_in', 3, '合同查询--入库记录', '', '手机端-合同查询--入库记录');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '现货品牌\n仓库 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '入库类型\n入库数量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 合同查询-- 出库记录
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_out', 3, '合同查询--出库记录', '', '手机端-合同查询--出库记录');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '现货品牌\n仓库 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '出库类型\n出库数量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- *******************************************************************************单据查询****************************************************************************** --
+-- 单据查询--持仓单
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_position', 3, '单据查询--持仓单', '', '手机端-单据查询--持仓单');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '所属机构\n用户名称 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '期货账户\n方向 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '今持仓\n总持仓 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '今仓可用\n总仓可用 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '开仓均价\n持仓均价 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '逐笔浮盈\n盯市浮盈 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '盈亏比例\n结算币种 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '交易所 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 单据查询--委托单
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_order', 3, '单据查询--委托单', '', '手机端-单据查询--委托单');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '日期+时间\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '用户名称\n期货账户 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '订单类型\n委托数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '成交数量\n委托价 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '冻结保证金\n订单类型 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '订单号\n结算币种 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '委托人\n撤单人 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '交易所 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 单据查询--成交单
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_trade', 3, '单据查询--成交单', '', '手机端-单据查询--成交单');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '日期+时间\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '用户名称\n期货账户 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '订单类型\n成交数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '成交价格\n手续费 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '平仓盈亏\n平仓盈亏(逐笔) ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '订单号\n委托人 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '结算币种\n交易所 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 单据查询--外部委托单
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_outorder', 3, '单据查询--外部委托单', '', '手机端-单据查询--外部委托单');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '日期+时间\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '外部期货账户\n订单类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '委托数量\n成交数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '委托价\n订单状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '外部订单号\n内部订单号 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '结算币种\n交易所 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 单据查询--外部成交单
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_outtrade', 3, '单据查询--外部成交单', '', '手机端-单据查询--外部成交单');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '日期+时间/\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '外部期货账户/\n订单类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '商品/\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '成交数量/\n成交价格 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '外部订单号/\n内部订单号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '结算币种/\n交易所 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- *******************************************************************************资金信息****************************************************************************** --
+--资金信息(个人)
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_account_person', 3, '资金信息-个人', '', '手机端-资金信息-个人');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'currency', '币种', '0', 10, 1, 1, '', '', 'currency', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'amountWorth', '当前权益', '0', 20, 1, 1, '', '', 'amountWorth', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'availMargin', '可用金额', '0', 30, 1, 1, '', '', 'availMargin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'usedmargin', '占用金额', '0', 40, 1, 1, '', '', 'usedmargin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'freezeAmount', '冻结金额', '0', 50, 1, 1, '', '', 'freezeAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'holderDynProfit', '持仓盈亏', '0', 60, 1, 1, '', '', 'holderDynProfit', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'closepl', '平仓盈亏', '0', 70, 1, 1, '', '', 'closepl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'totalAmount', '净资产', '0', 80, 1, 1, '', '', 'totalAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'totalMarketAmount', '总市值', '0', 90, 1, 1, '', '', 'totalMarketAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'currentbalance', '余额', '0', 100, 1, 1, '', '', 'currentbalance', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'inamount', '入金', '0', 110, 1, 1, '', '', 'inamount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'outamount', '出金', '0', 120, 1, 1, '', '', 'outamount', 0, 0, '');
+
+--资金信息(企业)
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_account_company', 3, '资金信息-企业', '', '手机端-资金信息-企业');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'currency', '币种', '0', 10, 1, 1, '', '', 'currency', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'amountWorth', '当前权益', '0', 20, 1, 1, '', '', 'amountWorth', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'availMargin', '可用金额', '0', 30, 1, 1, '', '', 'availMargin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'usedmargin', '占用金额', '0', 40, 1, 1, '', '', 'usedmargin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'freezeAmount', '冻结金额', '0', 50, 1, 1, '', '', 'freezeAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'holderDynProfit', '持仓盈亏', '0', 60, 1, 1, '', '', 'holderDynProfit', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'closepl', '平仓盈亏', '0', 70, 1, 1, '', '', 'closepl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'totalAmount', '净资产', '0', 80, 1, 1, '', '', 'totalAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'totalMarketAmount', '总市值', '0', 90, 1, 1, '', '', 'totalMarketAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'financedAmount', '融资额', '0', 100, 1, 1, '', '', 'financedAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'currentbalance', '余额', '0', 110, 1, 1, '', '', 'currentbalance', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'inamount', '入金', '0', 120, 1, 1, '', '', 'inamount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'outamount', '出金', '0', 130, 1, 1, '', '', 'outamount', 0, 0, '');
+
+--------------------------------------------------------------------------------------------------------千海金--------------------------------------------------------------------------------------
+-- 千海金-铂金宝
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_quote_bjb', 3, '千海金-铂金宝', '', '手机端-千海金-铂金宝');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'goodsname', '商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'bid', '回购', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'ask', '销售', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '涨幅', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '涨跌', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '今开', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '最高', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '最低', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '昨收', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '时间', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 千海金-饰品回收
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_quote_sphs', 3, '千海金-饰品回收', '', '手机端-千海金-饰品回收');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'goodsname', '商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'userinfotype', '回收', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'userinfotype', '涨幅', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'userinfotype', '涨跌', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+--------------------------------------------------------------------------------------------------------云融大宗--------------------------------------------------------------------------------------
+-- 云融大宗-仓单贸易_一口价
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdmy_fixed', 3, '云融大宗-仓单贸易_一口价', '', '手机端-云融大宗-仓单贸易_一口价');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '仓库', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-仓单贸易_浮动价
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdmy_float', 3, '云融大宗-仓单贸易_浮动价', '', '手机端-云融大宗-仓单贸易_浮动价');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '卖基差', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '买基差', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '期货合约', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '仓库', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-仓单贸易-贸易圈
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_cdmy_myq', 3, '云融大宗-仓单贸易-贸易圈', '', '手机端-云融大宗-仓单贸易-贸易圈');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '履约方式', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '价格', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '议价', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '整单', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '挂牌有效期', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '履约保证金', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '仓库', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '挂牌方', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-仓单预售_一口价
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdys_fixed', 3, '云融大宗-仓单预售_一口价', '', '手机端-云融大宗-仓单预售_一口价');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '仓库', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-仓单预售_浮动价
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdys_float', 3, '云融大宗-仓单预售_浮动价', '', '手机端-云融大宗-仓单预售_浮动价');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '卖基差', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '买基差', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '期货合约', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '仓库', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-仓单预售-贸易圈
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_cdys_myq', 3, '云融大宗-仓单贸易-仓单预售-贸易圈', '', '手机端-云融大宗-仓单贸易-仓单预售-贸易圈');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '履约方式', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '价格', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '议价', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '整单', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '交收月', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '挂牌有效期', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '履约保证金', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '仓库', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '挂牌方', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-订单交易_挂牌转让
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_ddjy_gpzr', 3, '云融大宗-订单交易_挂牌转让', '', '手机端-云融大宗-订单交易_挂牌转让');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'goodsname', '合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '最新价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '涨跌', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '幅度', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '今开', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '昨收', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '最低', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '最高', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-订单交易_基差点价
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_ddjy_jcdj', 3, '云融大宗-订单交易_基差点价', '', '手机端-云融大宗-订单交易_基差点价');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'goodsname', '合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '最新价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '涨跌', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '幅度', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '今开', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '昨收', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '最低', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '最高', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-订单交易_商品掉期
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_ddjy_spdq', 3, '云融大宗-订单交易_商品掉期', '', '手机端-云融大宗-订单交易_商品掉期');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'goodsname', '商品/标的', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '当前价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '涨跌', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '涨幅', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '振幅', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '开盘', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '最高', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '最低', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '结算', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '昨结算', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+
+-- 云融大宗-现货仓单_明细
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_mx', 3, '云融大宗-现货仓单_明细', '', '手机端-云融大宗-现货仓单_明细');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'deliverygoodsname/\nwrtypename', '品种/商品', '0', 10, 1, 1, '', '', 'deliverygoodsname/\nwrtypename', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'warehousename', '仓库', '0', 20, 1, 1, '', '', 'warehousename', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'qty', '库存数量', '0', 30, 1, 1, '', '', 'qty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'freezerqty', '冻结数量', '0', 40, 1, 1, '', '', 'freezerqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'pledgeqty', '质押数量', '0', 50, 1, 1, '', '', 'pledgeqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'enableqty', '可用数量', '0', 60, 1, 1, '', '', 'enableqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'wrholdeno', '仓单编号', '0', 70, 1, 1, '', '', 'wrholdeno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'createtime', '过户时间', '0', 80, 1, 1, '', '', 'createtime', 0, 0, '');
+
+-- 云融大宗-现货仓单_挂单
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_gd', 3, '云融大宗-现货仓单_挂单', '', '手机端-云融大宗-现货仓单_挂单');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'buyorsell', '品种/商品', '0', 10, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'buyorsell', '仓库', '0', 20, 1, 1, '', '', 'warehousename', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'buyorsell', '挂牌类型', '0', 30, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'futushow', '挂牌方式', '0', 40, 1, 1, '', '', 'futushow', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'futushow', '期货合约/基差', '0', 50, 1, 1, '', '', 'futushow', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'fixedprice', '挂牌价格', '0', 60, 1, 1, '', '', 'fixedprice', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'orderqty', '挂牌数量', '0', 70, 1, 1, '', '', 'orderqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'tradeqty', '成交数量', '0', 80, 1, 1, '', '', 'tradeqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'ordertime', '挂牌时间', '0', 90, 1, 1, '', '', 'ordertime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'wrtradeorderid', '挂牌单号', '0', 100, 1, 1, '', '', 'wrtradeorderid', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'wrtradeorderstatus', '状态', '0', 110, 1, 1, '', '', 'wrtradeorderstatus', 0, 0, '');
+
+-- 云融大宗-现货仓单_议价单
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_yjd', 3, '云融大宗-现货仓单_议价单', '', '手机端-云融大宗-现货仓单_议价单');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '品种/商品', '0', 10, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌方', '0', 20, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '仓库', '0', 30, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌类型', '0', 40, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌价格', '0', 50, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌数量', '0', 60, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌有效期', '0', 70, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '履约保证金', '0', 80, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '履约方式', '0', 90, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价价格', '0', 100, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价数量', '0', 110, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价时间', '0', 120, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价状态', '0', 130, 1, 1, '', '', 'buyorsell', 0, 0, '');
+
+-- 云融大宗-现货仓单_成交
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_cj', 3, '云融大宗-现货仓单_成交', '', '手机端-云融大宗-现货仓单_成交');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'deliverygoodsname/\nwrtypename', '品种/商品', '0', 10, 1, 1, '', '', 'deliverygoodsname/\nwrtypename', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'warehousename', '仓库', '0', 20, 1, 1, '', '', 'warehousename', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'buyorsell', '挂牌类型', '0', 30, 1, 1, '', '', 'buyorsell', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradeprice', '成交价格', '0', 40, 1, 1, '', '', 'tradeprice', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradeqty', '成交数量', '0', 50, 1, 1, '', '', 'tradeqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradeprice*tradeqty', '成交金额', '0', 60, 1, 1, '', '', 'tradeprice*tradeqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'matchusername', '手续费', '0', 70, 1, 1, '', '', 'matchusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'matchusername', '对手方', '0', 80, 1, 1, '', '', 'matchusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradetime', '成交时间', '0', 90, 1, 1, '', '', 'tradetime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'wrtradedetailid', '成交单号', '0', 100, 1, 1, '', '', 'wrtradedetailid', 0, 0, '');
+
+-- 云融大宗-现货仓单_提货
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_crk', 3, '云融大宗-现货仓单_提货', '', '手机端-云融大宗-现货仓单_提货');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '时间', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '物流信息', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '状态', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-预售仓单_订单汇总
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_ddhz', 3, '云融大宗-预售仓单_订单汇总', '', '手机端-云融大宗-预售仓单_订单汇总');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '预售数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '成交数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '冻结数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '可用数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-预售仓单_挂单
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_gd', 3, '云融大宗-预售仓单_挂单', '', '手机端-云融大宗-预售仓单_挂单');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '交收月', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌类型', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌方式', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '期货合约/基差', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌价格', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌数量', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '成交数量', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌时间', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '状态', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-预售仓单_议价单
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_yjd', 3, '云融大宗-预售仓单_议价单', '', '手机端-云融大宗-预售仓单_议价单');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌方', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌类型', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌价格', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌有效期', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '交收月', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '履约保证金', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '履约方式', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价价格', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价数量', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价时间', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价状态', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-预售仓单_议价单_别人对我
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_yjd_me', 3, '云融大宗-预售仓单_议价单_别人对我', '', '手机端-云融大宗-预售仓单_议价单_别人对我');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'goodsname', '议价人', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '数量', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '价格', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '时间', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '状态', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-预售仓单_议价单_我对别人
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_yjd_he', 3, '云融大宗-预售仓单_议价单_我对别人', '', '手机端-云融大宗-预售仓单_议价单_我对别人');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '数量', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '价格', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '时间', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-预售仓单_成交
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_cj', 3, '云融大宗-预售仓单_成交', '', '手机端-云融大宗-预售仓单_成交');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '交收月', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '挂牌类型', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交价格', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交金额', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'matchusername', '手续费', '0', 80, 1, 1, '', '', 'matchusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'matchusername', '对手方', '0', 90, 1, 1, '', '', 'matchusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交时间', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-商品订单-订单汇总
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_hyhz', 3, '云融大宗-商品订单-订单汇总', '', '手机端-云融大宗-商品订单-订单汇总');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '方向', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '持有数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '可用数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '冻结数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '持仓均价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '现价', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '持仓金额', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '市值', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '浮动盈亏', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-合约订单-委托
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_wt', 3, '云融大宗-合约订单-委托', '', '手机端-云融大宗-合约订单-委托');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '类型', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托价', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '成交数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托单号', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托时间', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '状态', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-合约订单-协议单
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_xyd', 3, '云融大宗-合约订单-协议单', '', '手机端-云融大宗-合约订单-协议单');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '方向', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '协议价', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '金额', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '状态', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '关联持仓', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '时间', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-合约订单-成交
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_cj', 3, '云融大宗-合约订单-成交', '', '手机端-云融大宗-合约订单-成交');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '类型', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交价', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交金额', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '手续费', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交单号', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交时间', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-合约订单-交收
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_js', 3, '云融大宗-合约订单-交收', '', '手机端-云融大宗-合约订单-交收');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '类型', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '合约数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '合约金额', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '点选数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '点选价格', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '点选货款', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '升贴水', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '交收金额', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '交收均价', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '交收申请时间', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '状态', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-履约信息-买履约
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_lyxx_buy', 3, '云融大宗-履约信息-买履约', '', '手机端-云融大宗-履约信息-买履约');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '交收月', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '付款方式', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '履约前冻结', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '履约冻结剩余', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '总金额', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '已付金额', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '溢短金额', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '关联单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '卖方', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '履约状态', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '当前步骤', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '开始时间', '0', 150, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-履约信息-卖履约
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_lyxx_sell', 3, '云融大宗-履约信息-卖履约', '', '手机端-云融大宗-履约信息-卖履约');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '交收月', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '付款方式', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '履约前冻结', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '履约冻结剩余', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '总金额', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '已付金额', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '溢短金额', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '关联单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '买方', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '履约状态', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '当前步骤', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '开始时间', '0', 150, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-融资管理-申请单
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_rzgl_sqd', 3, '云融大宗-融资管理-申请单', '', '手机端-云融大宗-融资管理-申请单');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'goodsname', '类型/状态', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '借款金额', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '购买商品', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '商品数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '借款天数', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '保证金', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '费用(日)', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '结息方式', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '最小计费天数', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '融出方', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '申请时间', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-融资管理-合同
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_rzgl_ht', 3, '云融大宗-融资管理-合同', '', '手机端-云融大宗-融资管理-合同');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'goodsname', '类型/状态', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '借款金额', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '购买商品', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '商品数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '剩余金额', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '剩余数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '已回购数量', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '已结费用', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '未结费用', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '费用欠款', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '融出方', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '截止日期', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+-- 云融大宗-参考行情
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_ckhq', 3, '云融大宗-参考行情', '', '手机端-云融大宗-参考行情');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'goodsname', '合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '最新价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '涨跌', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '幅度', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '今开', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '昨收', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '最低', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '最高', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '振幅', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '总量', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '现量', '0', 150, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '持仓量', '0', 160, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '日增', '0', 170, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName) 
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '金额', '0', 180, 1, 1, '', '', 'userinfotype', 0, 0, '');
+
+commit;

+ 61 - 61
ERMCP/PCWEB/Menu/pc_menu_ermcp_v6.json

@@ -724,7 +724,7 @@
                 "remark": "",
                 "remark": "",
                 "children": [
                 "children": [
                     {
                     {
-                        "title": "点价合同",
+                        "title": "点价合同",
                         "rulekey": "purchase_pending",
                         "rulekey": "purchase_pending",
                         "code": "purchase_pending",
                         "code": "purchase_pending",
                         "path": "purchase_pending",
                         "path": "purchase_pending",
@@ -1932,12 +1932,70 @@
         ]
         ]
     },
     },
     {
     {
+        "title": "库存管理",
+        "rulekey": "inventory",
+        "code": "inventory",
+        "path": "/inventory",
+        "component": "Layout",
+        "sort": 6,
+        "isshow": true,
+        "children": [
+            {
+                "title": "库存管理",
+                "rulekey": "inventory_manage",
+                "code": "inventory_manage",
+                "path": "inventory_manage",
+                "component": "Main",
+                "sort": 1,
+                "isshow": true,
+                "url": "",
+                "remark": "",
+                "children": [
+                    {
+                        "title": "库存管理",
+                        "rulekey": "inventory_management",
+                        "code": "inventory_management",
+                        "path": "inventory_management",
+                        "component": "views/search/inventory/list/inventory_current/index.vue",
+                        "sort": 1,
+                        "isshow": true,
+                        "url": "",
+                        "remark": "",
+                        "auth": [
+                            {
+                                "label": "新增",
+                                "rulekey": "inventory_management_add",
+                                "code": "add",
+                                "isshow": true,
+                                "remark": ""
+                            },
+                            {
+                                "label": "入库明细",
+                                "rulekey": "inventory_manager_inbound_details",
+                                "code": "inventory_manager_inbound_details",
+                                "isshow": true,
+                                "remark": ""
+                            },
+                            {
+                                "label": "出库明细",
+                                "rulekey": "inventory_manager_outbound_details",
+                                "code": "inventory_manager_outbound_details",
+                                "isshow": true,
+                                "remark": ""
+                            }
+                        ]
+                    }
+                ]
+            }
+        ]
+    },
+    {
         "title": "财务审核",
         "title": "财务审核",
         "rulekey": "financereview",
         "rulekey": "financereview",
         "code": "financereview",
         "code": "financereview",
         "path": "/financereview",
         "path": "/financereview",
         "component": "Layout",
         "component": "Layout",
-        "sort": 6,
+        "sort": 7,
         "isshow": true,
         "isshow": true,
         "children": [
         "children": [
             {
             {
@@ -2082,7 +2140,7 @@
         "code": "report",
         "code": "report",
         "path": "/report",
         "path": "/report",
         "component": "Layout",
         "component": "Layout",
-        "sort": 7,
+        "sort": 8,
         "isshow": true,
         "isshow": true,
         "children": [
         "children": [
             {
             {
@@ -2377,63 +2435,5 @@
                 ]
                 ]
             }
             }
         ]
         ]
-    },
-    {
-        "title": "库存管理",
-        "rulekey": "inventory",
-        "code": "inventory",
-        "path": "/inventory",
-        "component": "Layout",
-        "sort": 8,
-        "isshow": true,
-        "children": [
-            {
-                "title": "库存管理",
-                "rulekey": "inventory_manage",
-                "code": "inventory_manage",
-                "path": "inventory_manage",
-                "component": "Main",
-                "sort": 1,
-                "isshow": true,
-                "url": "",
-                "remark": "",
-                "children": [
-                    {
-                        "title": "库存管理",
-                        "rulekey": "inventory_management",
-                        "code": "inventory_management",
-                        "path": "inventory_management",
-                        "component": "views/search/inventory/list/inventory_current/index.vue",
-                        "sort": 1,
-                        "isshow": true,
-                        "url": "",
-                        "remark": "",
-                        "auth": [
-                            {
-                                "label": "新增",
-                                "rulekey": "inventory_management_add",
-                                "code": "add",
-                                "isshow": true,
-                                "remark": ""
-                            },
-                            {
-                                "label": "入库明细",
-                                "rulekey": "inventory_manager_inbound_details",
-                                "code": "inventory_manager_inbound_details",
-                                "isshow": true,
-                                "remark": ""
-                            },
-                            {
-                                "label": "出库明细",
-                                "rulekey": "inventory_manager_outbound_details",
-                                "code": "inventory_manager_outbound_details",
-                                "isshow": true,
-                                "remark": ""
-                            }
-                        ]
-                    }
-                ]
-            }
-        ]
     }
     }
 ]
 ]

+ 267 - 431
ERMCP/PCWEB/TableSql/fxgl_v3_pcweb_table_define.sql

@@ -27,8 +27,6 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'wrstandardname',
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'biztype', '业务类型', '120', 80, 1, 1, '', '', 'biztype', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'biztype', '业务类型', '120', 80, 1, 1, '', '', 'biztype', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'convertfactor', '标仓系数', '120', 90, 1, 1, '', '', 'convertfactor', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'pricetype', '定价类型', '120', 100, 1, 1, '', '', 'pricetype', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'pricetype', '定价类型', '120', 100, 1, 1, '', '', 'pricetype', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'goodsname', '点价合约', '120', 110, 1, 1, '', '', 'goodscode', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'goodsname', '点价合约', '120', 110, 1, 1, '', '', 'goodscode', 0, 0, '');
@@ -53,6 +51,96 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'tradeusername',
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'currencyname', '结算币种', '120', 200, 1, 1, '', '', 'currencyname', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery', 'currencyname', '结算币种', '120', 200, 1, 1, '', '', 'currencyname', 0, 0, '');
 
 
+-- 合同待审核
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_delivery_dsh', 2, '现货合同', '', 'web端-现货合同');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'contractno', '合同编号', '250', 20, 1, 1, '', '', 'contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'contracttype', '类型', '120', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'negative', '对手方', '250', 40, 1, 1, '', '', 'negative', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'subjectname', '交易主体', '120', 50, 1, 1, '', '', 'subjectname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'qty', '合同量', '120', 50, 1, 1, '', '', 'qty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'deliverygoodsname', '现货品种', '120', 60, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'wrstandardname', '商品', '120', 70, 1, 1, '', '', 'wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'biztype', '业务类型', '120', 80, 1, 1, '', '', 'biztype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'pricetype', '定价类型', '120', 100, 1, 1, '', '', 'pricetype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'goodsname', '点价合约', '120', 110, 1, 1, '', '', 'goodscode', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'price', '价格', '120', 120, 1, 1, '', '', 'price', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'pricemove', '升贴水', '120', 130, 1, 1, '', '', 'pricemove', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'amount', '金额', '120', 140, 1, 1, '', '', 'amount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'margin', '保证金', '120', 150, 1, 1, '', '', 'margin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'startdate', '点价期', '200', 160, 1, 1, '', '', 'startdate', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'deliverystartdate', '交收期', '200', 170, 1, 1, '', '', 'deliverystartdate', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'saleusername', '业务员', '300', 180, 1, 1, '', '', 'saleusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'merusername', '跟单员', '300', 190, 1, 1, '', '', 'merusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'tradeusername', '交易用户', '300', 190, 1, 1, '', '', 'tradeusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_dsh', 'currencyname', '结算币种', '120', 200, 1, 1, '', '', 'currencyname', 0, 0, '');
+
+-- 合同已审核
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_delivery_ysh', 2, '现货合同', '', 'web端-现货合同');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'contracctstatus', '状态', '120', 10, 1, 1, '', '', 'contracctstatus', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'contractno', '合同编号', '250', 20, 1, 1, '', '', 'contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'contracttype', '类型', '120', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'negative', '对手方', '250', 40, 1, 1, '', '', 'negative', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'subjectname', '交易主体', '120', 50, 1, 1, '', '', 'subjectname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'qty', '合同量', '120', 50, 1, 1, '', '', 'qty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'deliverygoodsname', '现货品种', '120', 60, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'wrstandardname', '商品', '120', 70, 1, 1, '', '', 'wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'biztype', '业务类型', '120', 80, 1, 1, '', '', 'biztype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'convertfactor', '标仓系数', '0', 180, 1, 1, '', '', 'convertfactor', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'pricetype', '定价类型', '120', 100, 1, 1, '', '', 'pricetype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'goodsname', '点价合约', '120', 110, 1, 1, '', '', 'goodscode', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'price', '价格', '120', 120, 1, 1, '', '', 'price', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'pricemove', '升贴水', '120', 130, 1, 1, '', '', 'pricemove', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'amount', '金额', '120', 140, 1, 1, '', '', 'amount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'margin', '保证金', '120', 150, 1, 1, '', '', 'margin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'startdate', '点价期', '200', 160, 1, 1, '', '', 'startdate', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'deliverystartdate', '交收期', '200', 170, 1, 1, '', '', 'deliverystartdate', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'saleusername', '业务员', '300', 180, 1, 1, '', '', 'saleusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'merusername', '跟单员', '300', 190, 1, 1, '', '', 'merusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'tradeusername', '交易用户', '300', 190, 1, 1, '', '', 'tradeusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_delivery_ysh', 'currencyname', '结算币种', '120', 200, 1, 1, '', '', 'currencyname', 0, 0, '');
+
 -- 客户资料
 -- 客户资料
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_userinfo', 2, '客户资料', '', 'web端-客户资料');
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_userinfo', 2, '客户资料', '', 'web端-客户资料');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
@@ -78,6 +166,8 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'legalpersonname'
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'taxpayernum', '纳税人识别号', '0', 110, 1, 1, '', '', 'taxpayernum', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'taxpayernum', '纳税人识别号', '0', 110, 1, 1, '', '', 'taxpayernum', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'attachment1', '证件照', '0', 130, 1, 1, '', '', 'attachment1', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'address', '地址', '0', 130, 1, 1, '', '', 'address', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'address', '地址', '0', 130, 1, 1, '', '', 'address', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'remark', '备注', '0', 140, 1, 1, '', '', 'remark', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_userinfo', 'remark', '备注', '0', 140, 1, 1, '', '', 'remark', 0, 0, '');
@@ -133,8 +223,7 @@ insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, Colum
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'deliverystartdate,deliveryenddate', '点价期', '200', 150, 1, 1, '', '', 'deliverystartdate,deliveryenddate', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'deliverystartdate,deliveryenddate', '点价期', '200', 150, 1, 1, '', '', 'deliverystartdate,deliveryenddate', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'startdate,enddate', '交收期', '200', 160, 1, 1, '', '', 'startdate,enddate', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'startdate,enddate', '交收期', '200', 160, 1, 1, '', '', 'startdate,enddate', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_pointprice', 'convertfactor', '标仓系数', '0', 170, 1, 1, '', '', 'convertfactor', 0, 0, '');
+
 -- 采购合同--履约结算
 -- 采购合同--履约结算
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_purchase_settle', 2, '采购_履约交收', '', 'web端-采购-履约交收');
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_purchase_settle', 2, '采购_履约交收', '', 'web端-采购-履约交收');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
@@ -166,8 +255,6 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'deliverys
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'startdate,enddate', '交收期 ', '200', 140, 1, 1, '', '', 'startdate,enddate', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'startdate,enddate', '交收期 ', '200', 140, 1, 1, '', '', 'startdate,enddate', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'convertfactor', '标仓系数 ', '0', 150, 1, 1, '', '', 'convertfactor', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'goodsname', '点价合约 ', '0', 160, 1, 1, '', '', 'goodsname', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'goodsname', '点价合约 ', '0', 160, 1, 1, '', '', 'goodsname', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'pricemove', '升贴水 ', '0', 170, 1, 1, '', '', 'pricemove', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_purchase_settle', 'pricemove', '升贴水 ', '0', 170, 1, 1, '', '', 'pricemove', 0, 0, '');
@@ -244,9 +331,8 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'daikaiam
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'deliverystartdate,deliveryenddate', '点价期', '200', 150, 1, 1, '', '', 'deliverystartdate,deliveryenddate', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'deliverystartdate,deliveryenddate', '点价期', '200', 150, 1, 1, '', '', 'deliverystartdate,deliveryenddate', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'startdate,enddate', '交收期 ', '200', 160, 1, 1, '', '', 'startdate,enddate', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'convertfactor', '标仓系数', '0', 170, 1, 1, '', '', 'convertfactor', 0, 0, '');
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_pointprice', 'startdate,enddate', '交收期 ', '200', 160, 1, 1, '', '', 'startdate,enddate', 0, 0, '')
+
 -- 销售--履约交收
 -- 销售--履约交收
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_sales_settle', 2, '销售_履约交收', '', 'web端-销售-履约交收');
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_sales_settle', 2, '销售_履约交收', '', 'web端-销售-履约交收');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
@@ -326,9 +412,7 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_sales_all', 'convertfactor',
 -- 敞口--实时敞口
 -- 敞口--实时敞口
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure', 2, '实时敞口', '', 'web端-实时敞口');
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure', 2, '实时敞口', '', 'web端-实时敞口');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'MiddleGoodsName', '套保品种', '0', 10, 1, 1, '', '', 'MiddleGoodsName', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'MiddleGoodsCode', '代码', '0', 20, 1, 1, '', '', 'MiddleGoodsCode', 0, 0, '');
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'MiddleGoodsName', '套保品种/代码', '0', 10, 1, 1, '', '', 'MiddleGoodsName', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'TotalSpotQty', '现货总量', '0', 30, 1, 1, '', 'FormatterUnit,ENUMDICNAME', 'TotalSpotQty', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'TotalSpotQty', '现货总量', '0', 30, 1, 1, '', 'FormatterUnit,ENUMDICNAME', 'TotalSpotQty', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
@@ -371,33 +455,29 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure', 'DiffQty', '总
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure_detail', 2, '实时敞口--现货明细', '', 'web端--实时敞口--现货明细');
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure_detail', 2, '实时敞口--现货明细', '', 'web端--实时敞口--现货明细');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'middlegoodsname', '套保品种/代码', '250', 10, 1, 1, '', '', 'middlegoodsname', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'middlegoodsname', '套保品种/代码', '250', 10, 1, 1, '', '', 'middlegoodsname', 0, 0, '');
---insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
---values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'deliverygoodscode', '代码', '0', 10, 1, 1, '', '', 'deliverygoodscode', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'createtime', '时间', '0', 20, 1, 1, '', '', 'createtime', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'createtime', '时间', '0', 20, 1, 1, '', '', 'createtime', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'contracttype', '类型', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'contracttype', '类型', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'deliverygoodsname', '现货品', '0', 40, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'deliverygoodsname', '现货品', '0', 40, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'qty', '现货品数量', '0', 50, 1, 1, '', 'FormatterUnit,enumdicname', 'qty', 0, 0, '');
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'qty', '现货品数量', '0', 50, 1, 1, '', 'FormatterUnit,enumdicname', 'qty', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'changeQty', '套保品种变动量', '0', 60, 1, 1, '', 'FormatterUnit,enumdicname', 'changeQty', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'changeQty', '套保品种变动量', '0', 60, 1, 1, '', 'FormatterUnit,enumdicname', 'changeQty', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'relateNo', '合同(计划)编号 ', '0', 70, 1, 1, '', '', 'relateNo', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'relateNo', '合同(计划)编号 ', '0', 70, 1, 1, '', '', 'relateNo', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'convertfactor', '标仓系数', '0', 80, 1, 1, '', '', 'convertfactor', 0, 0, '');
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'convertfactor', '折算系数', '0', 80, 1, 1, '', '', 'convertfactor', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'convertratio', '套保系数 ', '0', 90, 1, 1, '', '', 'convertratio', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_detail', 'convertratio', '套保系数 ', '0', 90, 1, 1, '', '', 'convertratio', 0, 0, '');
 
 
 -- 实时敞口--期货明细
 -- 实时敞口--期货明细
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure_futures_detail', 2, '实时敞口--期货明细', '', 'web端--实时敞口--期货明细');
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_exposure_futures_detail', 2, '实时敞口--期货明细', '', 'web端--实时敞口--期货明细');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'goodsname', '期货合约 ', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'goodsname', '期货合约/代码 ', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'goodscode', '代码 ', '0', 20, 1, 1, '', '', 'goodscode', 0, 0, '');
---insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
---values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'createtime', '时间 ', '0', 20, 1, 1, '', '', 'createtime', 0, 0, '');
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'createtime', '时间 ', '0', 20, 1, 1, '', '', 'createtime', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'ydqty', '昨日持仓', '0', 30, 1, 1, '', '', 'ydqty', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_exposure_futures_detail', 'ydqty', '昨日持仓', '0', 30, 1, 1, '', '', 'ydqty', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
@@ -577,6 +657,41 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'applyti
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'applyname', '登记人', '0', 130, 1, 1, '', '', 'contractstatus', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_dj', 'applyname', '登记人', '0', 130, 1, 1, '', '', 'contractstatus', 0, 0, '');
 
 
+-- 业务审核-点价-已审核
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_business_aduit_ydj', 2, '业务审核-点价', '', 'web端-业务审核-点价');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'applystatus', '状态', '0', 10, 1, 1, '', '', 'contractstatus', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'contracttype', '合同类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'buyusernameOrsellusername', '对手方', '0', 30, 1, 1, '', '', 'buyusernameOrsellusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'contractno', '合同编号', '0', 40, 1, 1, '', '', 'contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'deliverygoodsname', '现货品种', '0', 50, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'pricetype', '点价类型', '0', 60, 1, 1, '', '', 'pricetype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'goodsname', '点价合约', '0', 70, 1, 1, '', '', 'goodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'pricedPrice', '点价价格', '0', 80, 1, 1, '', '', 'pricedPrice', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'pricemove', '升贴水', '0', 90, 1, 1, '', '', 'pricemove', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'pricedQty', '点价数量', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'amount', '点价金额', '0', 110, 1, 1, '', '', 'amount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'applytime', '登记时间', '0', 120, 1, 1, '', '', 'audittime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'applyname', '登记人', '0', 130, 1, 1, '', '', 'contractstatus', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'audittime', '审核时间', '0', 130, 1, 1, '', '', 'audittime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'auditid', '审核人', '0', 130, 1, 1, '', '', 'auditid', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_ydj', 'auditremark', '审核意见', '0', 130, 1, 1, '', '', 'auditremark', 0, 0, '');
+
 -- 业务审核-交收
 -- 业务审核-交收
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_business_aduit_js', 2, '业务审核-交收', '', 'web端-业务审核-交收');
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_business_aduit_js', 2, '业务审核-交收', '', 'web端-业务审核-交收');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
@@ -604,6 +719,39 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'applyti
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'applyname', '登记人', '0', 120, 1, 1, '', '', 'auditname', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_js', 'applyname', '登记人', '0', 120, 1, 1, '', '', 'auditname', 0, 0, '');
 
 
+-- 业务审核-交收-未审核
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_business_aduit_yjs', 2, '业务审核-交收', '', 'web端-业务审核-交收');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'applystatus', '状态', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'contracttype', '合同类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'buyusernameOrsellusername', '对手方', '0', 30, 1, 1, '', '', 'buyusernameOrsellusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'contractno', '合同编号', '0', 40, 1, 1, '', '', 'contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'deliverygoodsname', '现货品种', '0', 50, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'operateapplytype', '点价类型', '0', 60, 1, 1, '', '', 'operateapplytype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'reckonrealqty', '交收量', '0', 70, 1, 1, '', '', 'reckonrealqty', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'reckonotheramount', '其它费用', '0', 80, 1, 1, '', '', 'reckonotheramount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'addmargin||decmargin', '调整保证金', '0', 90, 1, 1, '', '', 'addmargin||decmargin', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'reckonadjustamount', '调整金额', '0', 100, 1, 1, '', '', 'reckonadjustamount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'applytime', '登记时间', '0', 110, 1, 1, '', '', 'audittime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'applyname', '登记人', '0', 120, 1, 1, '', '', 'auditname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'audittime', '审核时间', '0', 130, 1, 1, '', '', 'audittime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'auditid', '审核人', '0', 130, 1, 1, '', '', 'auditid', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_business_aduit_yjs', 'auditremark', '审核意见', '0', 130, 1, 1, '', '', 'auditremark', 0, 0, '');
+
 
 
 -- 财务审核-发票
 -- 财务审核-发票
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_fincial_aduit_fp', 2, '业务审核-发票', '', 'web端-业务审核-发票');
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_fincial_aduit_fp', 2, '业务审核-发票', '', 'web端-业务审核-发票');
@@ -624,10 +772,43 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'contract
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'InvoiceAmount', '金额', '0', 80, 1, 1, '', '', 'InvoiceAmount', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'InvoiceAmount', '金额', '0', 80, 1, 1, '', '', 'InvoiceAmount', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'attachurl', '发票附件', '0', 80, 1, 1, '', '', 'attachurl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'applytime', '登记时间', '0', 90, 1, 1, '', '', 'applytime', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'applytime', '登记时间', '0', 90, 1, 1, '', '', 'applytime', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'applyname', '登记人', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_fp', 'applyname', '登记人', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
 
 
+-- 财务审核-发票-已审核
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_fincial_aduit_yfp', 2, '业务审核-发票', '', 'web端-业务审核-发票');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'applystatus', '状态', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'contracttype', '合同类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'buyusernameOrsellusername', '对手方', '0', 30, 1, 1, '', '', 'contracttype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'contractno', '合同编号', '0', 40, 1, 1, '', '', 'contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'deliverygoodsname', '现货品种', '0', 50, 1, 1, '', '', 'audittime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'operateapplytype', '点价类型', '0', 60, 1, 1, '', '', 'audittime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'contracttype', '发票类型', '0', 70, 1, 1, '', '', 'contracttype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'InvoiceAmount', '金额', '0', 80, 1, 1, '', '', 'InvoiceAmount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'attachurl', '发票附件', '0', 80, 1, 1, '', '', 'attachurl', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'applytime', '登记时间', '0', 90, 1, 1, '', '', 'applytime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'applyname', '登记人', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'audittime', '审核时间', '0', 130, 1, 1, '', '', 'audittime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'auditid', '审核人', '0', 130, 1, 1, '', '', 'auditid', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_yfp', 'auditremark', '审核意见', '0', 130, 1, 1, '', '', 'auditremark', 0, 0, '');
+
 -- 财务审核-款项
 -- 财务审核-款项
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_fincial_aduit_kx', 2, '财务审核-款项', '', 'web端-财务审核-款项');
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_fincial_aduit_kx', 2, '财务审核-款项', '', 'web端-财务审核-款项');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
@@ -651,16 +832,45 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_kx', 'applytim
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_kx', 'applyname', '登记人', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_kx', 'applyname', '登记人', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
 
 
+-- 财务审核-款项-已审核
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_fincial_aduit_ykx', 2, '财务审核-款项', '', 'web端-财务审核-款项');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'contractstatus', '状态', '0', 10, 1, 1, '', '', 'contractstatus', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'contracttype', '合同类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'buyusernameOrsellusername', '对手方', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'contractno', '合同编号', '0', 40, 1, 1, '', '', 'contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'deliverygoodsname', '现货品种', '0', 50, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'operateapplytype', '点价类型', '0', 60, 1, 1, '', '', 'operateapplytype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'kxtype', '款项类型', '0', 70, 1, 1, '', '', 'kxtype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'payamount', '金额', '0', 80, 1, 1, '', '', 'payamount', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'applytime', '登记时间', '0', 90, 1, 1, '', '', 'applytime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'applyname', '登记人', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'audittime', '审核时间', '0', 130, 1, 1, '', '', 'audittime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'auditid', '审核人', '0', 130, 1, 1, '', '', 'auditid', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_fincial_aduit_ykx', 'auditremark', '审核意见', '0', 130, 1, 1, '', '', 'auditremark', 0, 0, '');
+
 -- 库存审核 - 入库
 -- 库存审核 - 入库
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_stock_aduit_in', 2, '库存审核-入库', '', 'web端-库存审核-入库');
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_stock_aduit_in', 2, '库存审核-入库', '', 'web端-库存审核-入库');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'applystatus', '状态', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'applystatus', '状态', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'inouttype', '入库类型', '0', 20, 1, 1, '', '', 'inouttype', 0, 0, '');
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'inouttype', '入库类型', '0', 20, 1, 1, '', '', 'inouttype', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'deliverygoodsname', '现货品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'deliverygoodsname', '现货品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'wrstandardname', '品类', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'wrstandardname', '品', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'brandname', '品牌', '0', 50, 1, 1, '', '', 'brandname', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'brandname', '品牌', '0', 50, 1, 1, '', '', 'brandname', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
@@ -678,6 +888,39 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'applytime'
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'applyname', '登记人', '0', 120, 1, 1, '', '', 'applyname', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_in', 'applyname', '登记人', '0', 120, 1, 1, '', '', 'applyname', 0, 0, '');
 
 
+-- 库存审核 - 入库 - 已审核
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_stock_aduit_yin', 2, '库存审核-入库', '', 'web端-库存审核-入库');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'applystatus', '状态', '0', 10, 1, 1, '', '', 'applystatus', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'inouttype', '出入库类型', '0', 20, 1, 1, '', '', 'inouttype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'deliverygoodsname', '现货品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'wrstandardname', '商品', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'brandname', '品牌', '0', 50, 1, 1, '', '', 'brandname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'warehousecode', '仓库', '0', 60, 1, 1, '', '', 'warehousecode', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'contracttype', '合同类型', '0', 70, 1, 1, '', '', 'contracttype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'buynicknameOrsellusername', '对手方', '0', 80, 1, 1, '', '', 'buynicknameOrsellusername', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'contractno', '合同编号', '0', 90, 1, 1, '', '', 'contractno', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'pricetype', '点价类型', '0', 100, 1, 1, '', '', 'pricetype', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'applytime', '登记时间', '0', 110, 1, 1, '', '', 'applytime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'applyname', '登记人', '0', 120, 1, 1, '', '', 'applyname', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'audittime', '审核时间', '0', 130, 1, 1, '', '', 'audittime', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'auditid', '审核人', '0', 130, 1, 1, '', '', 'auditid', 0, 0, '');
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_stock_aduit_yin', 'auditremark', '审核意见', '0', 130, 1, 1, '', '', 'auditremark', 0, 0, '');
+
 -- 库存审核-出库
 -- 库存审核-出库
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_stock_aduit_out', 2, '库存审核-出库', '', 'web端-库存审核-出库');
 insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_stock_aduit_out', 2, '库存审核-出库', '', 'web端-库存审核-出库');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
@@ -834,8 +1077,6 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'deliverygood
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'wrstandardname', '商品', '0', 50, 1, 1, '', '', 'wrstandardname', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'wrstandardname', '商品', '0', 50, 1, 1, '', '', 'wrstandardname', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'convertfactor', '标仓系数', '0', 60, 1, 1, '', '', 'convertfactor', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'planqty', '计划量', '0', 70, 1, 1, '', '', 'planqty', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'planqty', '计划量', '0', 70, 1, 1, '', '', 'planqty', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'tradeusername', '交易用户', '0', 80, 1, 1, '', '', 'tradeusername', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_hedging_plan', 'tradeusername', '交易用户', '0', 80, 1, 1, '', '', 'tradeusername', 0, 0, '');
@@ -887,7 +1128,7 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'applyt
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'applyname', '登记人', '0', 100, 1, 1, '', '', 'hedgeplanstatus', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'applyname', '登记人', '0', 100, 1, 1, '', '', 'hedgeplanstatus', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'audittime', '审核时间', '0', 110, 1, 1, '', '', 'hedgeplanstatus', 0, 0, '');
+values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'userinfotype', '审核时间', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'auditname', '审核人', '0', 120, 1, 1, '', '', 'hedgeplanstatus', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_application_record', 'auditname', '审核人', '0', 120, 1, 1, '', '', 'hedgeplanstatus', 0, 0, '');
 
 
@@ -2718,410 +2959,5 @@ values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_m
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'amount', '金额', '0', 200, 1, 1, '', '', 'amount', 0, 0, '');
 values (seq_TableColumnConfig.Nextval, 'table_pcweb_financing_manage_reference_market', 'amount', '金额', '0', 200, 1, 1, '', '', 'amount', 0, 0, '');
 
 
--- 查询 --
-/* 若查询与原功能字段不相同时,可启用不同
--- 查询 -- 现货仓单 -- 仓单明细
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_spot_warrant_warehouse_detail', 2, '查询-现货仓单-仓单明细', '', 'web端-查询-现货仓单-仓单明细');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_warehouse_detail', 'wrholdeno', '仓单编号', '0', 10, 1, 1, '', '', 'wrholdeno', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_warehouse_detail', 'deliverygoodsname', '品种', '0', 20, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_warehouse_detail', 'wrstandardname', '商品', '0', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_warehouse_detail', 'warehousename', '仓库', '0', 40, 1, 1, '', '', 'warehousename', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_warehouse_detail', 'qty', '库存数量', '0', 50, 1, 1, '', '', 'qty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_warehouse_detail', 'freezerqty', '冻结数量', '0', 60, 1, 1, '', '', 'freezerqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_warehouse_detail', 'pledgeqty', '质押数量', '0', 70, 1, 1, '', '', 'pledgeqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_warehouse_detail', 'enableqty', '可用数量', '0', 80, 1, 1, '', '', 'enableqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_warehouse_detail', 'createtime', '过户时间', '0', 90, 1, 1, '', '', 'createtime', 0, 0, '');
-
--- 查询 -- 现货仓单 -- 挂牌记录
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_spot_warrant_listing_record', 2, '查询-现货仓单-挂牌记录', '', 'web端-查询-现货仓单-挂牌记录');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_listing_record', 'wrtradeorderid', '挂牌单号', '0', 10, 1, 1, '', '', 'wrtradeorderid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_listing_record', 'wrtradetype', '挂牌类型', '0', 20, 1, 1, '', '', 'wrtradetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_listing_record', 'deliverygoodsname', '品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_listing_record', 'wrtypename', '商品', '0', 40, 1, 1, '', '', 'wrtypename', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_listing_record', 'warehousename', '仓库', '0', 50, 1, 1, '', '', 'warehousename', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_listing_record', 'futushow', '期货合约/升贴水', '0', 60, 1, 1, '', '', 'futushow', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_listing_record', 'tradeprice', '挂牌价格', '0', 70, 1, 1, '', '', 'tradeprice', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_listing_record', 'orderqty', '挂牌数量', '0', 80, 1, 1, '', '', 'orderqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_listing_record', 'tradeqty', '成交数量', '0', 90, 1, 1, '', '', 'tradeqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_listing_record', 'ordertime', '挂牌时间', '0', 100, 1, 1, '', '', 'ordertime', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_listing_record', 'wrtradeorderstatus', '状态', '0', 110, 1, 1, '', '', 'wrtradeorderstatus', 0, 0, '');
 
 
--- 查询 -- 现货仓单 -- 成交记录
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_spot_warrant_transaction_record', 2, '查询-现货仓单-成交记录', '', 'web端-查询-现货仓单-成交记录');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_transaction_record', 'wrtradedetailid', '成交单号', '0', 10, 1, 1, '', '', 'wrtradedetailid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_transaction_record', 'wrtradetype', '类型', '0', 20, 1, 1, '', '', 'wrtradetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_transaction_record', 'deliverygoodsname', '品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_transaction_record', 'wrtypename', '商品', '0', 40, 1, 1, '', '', 'wrtypename', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_transaction_record', 'warehousename', '仓库', '0', 50, 1, 1, '', '', 'warehousename', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_transaction_record', 'tradeprice', '成交价格', '0', 60, 1, 1, '', '', 'tradeprice', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_transaction_record', 'tradeqty', '成交数量', '0', 70, 1, 1, '', '', 'tradeqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_transaction_record', 'amount', '成交金额', '0', 80, 1, 1, '', '', 'amount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_transaction_record', 'matchusername', '对手方', '0', 90, 1, 1, '', '', 'matchusername', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_transaction_record', 'tradetime', '成交时间', '0', 100, 1, 1, '', '', 'tradetime', 0, 0, '');
-
--- 查询 -- 现货仓单 -- 协议指定记录
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_spot_warrant_protocol_specified_record', 2, '查询-现货仓单-协议指定记录', '', 'web端-查询-现货仓单-协议指定记录');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_protocol_specified_record', 'scfcontractid', '发起方', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_protocol_specified_record', 'financetype', '类型', '0', 20, 1, 1, '', '', 'financetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_protocol_specified_record', 'lenderusername', '指定方', '0', 30, 1, 1, '', '', 'v', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_protocol_specified_record', 'lenderamount', '品种', '0', 40, 1, 1, '', '', 'lenderamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_protocol_specified_record', 'productname', '商品', '0', 50, 1, 1, '', '', 'productname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_protocol_specified_record', 'remainamount', '仓库', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_protocol_specified_record', 'remainwrpositionqty', '价格', '0', 70, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_protocol_specified_record', 'buybackwrpositionqty', '数量', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_protocol_specified_record', 'closeinterest', '金额', '0', 90, 1, 1, '', '', 'closeinterest', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_protocol_specified_record', 'closeinterest', '发起时间', '0', 90, 1, 1, '', '', 'closeinterest', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_spot_warrant_protocol_specified_record', 'closeinterest', '状态', '0', 100, 1, 1, '', '', 'closeinterest', 0, 0, '');
-
--- 查询 -- 预售仓单 -- 订单汇总
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_pre_sale_warehouse_order_summary', 2, '查询-预售仓单-订单汇总', '', 'web端-查询-预售仓单-订单汇总');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_order_summary', 'scfcontractid', '仓单编号', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_order_summary', 'deliverygoodsname', '品种', '0', 20, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_order_summary', 'wrtypename', '商品', '0', 30, 1, 1, '', '', 'wrtypename', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_order_summary', 'warehousename', '仓库', '0', 40, 1, 1, '', '', 'warehousename', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_order_summary', 'credittotalqty', '预售总量', '0', 50, 1, 1, '', '', 'credittotalqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_order_summary', 'credittradeqty', '成交总量', '0', 60, 1, 1, '', '', 'credittradeqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_order_summary', 'creditfreezeqty', '冻结数量', '0', 70, 1, 1, '', '', 'creditfreezeqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_order_summary', 'enalbeqty', '可用数量', '0', 80, 1, 1, '', '', 'enalbeqty', 0, 0, '');
-
--- 查询 -- 预售仓单 -- 委托记录
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_pre_sale_warehouse_commission_record', 2, '查询-预售仓单-委托记录', '', 'web端-查询-预售仓单-委托记录');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'wrtradeorderid', '挂牌单号', '0', 10, 1, 1, '', '', 'wrtradeorderid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'wrtradetype', '类型', '0', 20, 1, 1, '', '', 'wrtradetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'deliverygoodsname', '品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'wrstandardname', '商品', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'warehousename', '仓库', '0', 50, 1, 1, '', '', 'warehousename', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'deliverymonth', '交收月', '0', 60, 1, 1, '', '', 'deliverymonth', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'futushow', '期货合约/基差', '0', 70, 1, 1, '', '', 'futushow', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'tradeprice', '挂牌价格', '0', 80, 1, 1, '', '', 'tradeprice', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'orderqty', '挂牌数量', '0', 80, 1, 1, '', '', 'orderqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'tradeqty', '成交数量', '0', 80, 1, 1, '', '', 'tradeqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'ordertime', '挂牌时间', '0', 80, 1, 1, '', '', 'ordertime', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_commission_record', 'wrtradeorderstatus', '状态', '0', 80, 1, 1, '', '', 'wrtradeorderstatus', 0, 0, '');
-
--- 查询 -- 预售仓单 -- 成交记录
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_pre_sale_warehouse_transaction_record', 2, '查询-预售仓单-成交记录', '', 'web端-查询-预售仓单-成交记录');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_transaction_record', 'wrtradedetailid', '成交单号', '0', 10, 1, 1, '', '', 'wrtradedetailid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_transaction_record', 'wrtradetype', '类型', '0', 20, 1, 1, '', '', 'financewrtradetypetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_transaction_record', 'deliverygoodsname', '品种', '0', 30, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_transaction_record', 'wrstandardname', '商品', '0', 40, 1, 1, '', '', 'wrstandardname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_transaction_record', 'warehousename', '仓库', '0', 50, 1, 1, '', '', 'warehousename', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_transaction_record', 'deliverymonth', '交收月', '0', 60, 1, 1, '', '', 'deliverymonth', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_transaction_record', 'tradeprice', '成交价格', '0', 70, 1, 1, '', '', 'tradeprice', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_transaction_record', 'tradeqty', '成交数量', '0', 80, 1, 1, '', '', 'tradeqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_transaction_record', 'tradeqty/tradeprice', '成交金额', '0', 80, 1, 1, '', '', 'tradeqty/tradeprice', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_transaction_record', 'matchusername', '成交方', '0', 80, 1, 1, '', '', 'matchusername', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_transaction_record', 'tradetime', '成交时间', '0', 80, 1, 1, '', '', 'tradetime', 0, 0, '');
-
--- 查询 -- 预售仓单 -- 协议指定记录
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 2, '查询-预售仓单-协议指定记录', '', 'web端-查询-预售仓单-协议指定记录');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 'scfcontractid', '发起方', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 'financetype', '类型', '0', 20, 1, 1, '', '', 'financetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 'lenderusername', '指定方', '0', 30, 1, 1, '', '', 'v', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 'lenderamount', '品种', '0', 40, 1, 1, '', '', 'lenderamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 'productname', '商品', '0', 50, 1, 1, '', '', 'productname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 'remainamount', '仓库', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 'remainwrpositionqty', '交收月', '0', 70, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 'buybackwrpositionqty', '价格', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 'buybackwrpositionqty', '数量', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 'buybackwrpositionqty', '金额', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_pre_sale_warehouse_protocol_specified_record', 'buybackwrpositionqty', '委托时间', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
-
--- 查询 -- 商品合约 -- 合约汇总
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_commodity_contract_summary', 2, '查询-商品合约-合约汇总', '', 'web端-查询-商品合约-合约汇总');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_summary', 'agreementno', '合约', '0', 10, 1, 1, '', '', 'agreementno', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_summary', 'agreementname', '持有数量', '0', 20, 1, 1, '', '', 'agreementname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_summary', 'agreementtype', '可用数量', '0', 30, 1, 1, '', '', 'agreementtype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_summary', 'agreementfrequency', '冻结数量', '0', 40, 1, 1, '', '', 'agreementfrequency', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_summary', 'isvalid', '均价', '0', 50, 1, 1, '', '', 'isvalid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_summary', 'createtime', '现价', '0', 60, 1, 1, '', '', 'createtime', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_summary', 'createtime', '持仓金额', '0', 70, 1, 1, '', '', 'createtime', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_summary', 'createtime', '浮动盈亏', '0', 80, 1, 1, '', '', 'createtime', 0, 0, '');
-
--- 查询 -- 商品合约 -- 委托记录
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_commodity_contract_entrustment_record', 2, '查询-商品合约-委托记录', '', 'web端-查询-商品合约-委托记录');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_entrustment_record', 'scfcontractid', '合约', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_entrustment_record', 'financetype', '类型', '0', 20, 1, 1, '', '', 'financetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_entrustment_record', 'lenderusername', '委托价', '0', 30, 1, 1, '', '', 'v', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_entrustment_record', 'lenderamount', '委托数量', '0', 40, 1, 1, '', '', 'lenderamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_entrustment_record', 'productname', '成交数量', '0', 50, 1, 1, '', '', 'productname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_entrustment_record', 'remainamount', '委托单号', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_entrustment_record', 'remainwrpositionqty', '委托时间', '0', 70, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_entrustment_record', 'buybackwrpositionqty', '状态', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
-
--- 查询 -- 商品合约 -- 成交记录
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_commodity_contract_transaction_record', 2, '查询-商品合约-成交记录', '', 'web端-查询-商品合约-成交记录');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_transaction_record', 'scfcontractid', '合约', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_transaction_record', 'financetype', '类型', '0', 20, 1, 1, '', '', 'financetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_transaction_record', 'lenderusername', '成交价', '0', 30, 1, 1, '', '', 'v', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_transaction_record', 'lenderamount', '成交数量', '0', 40, 1, 1, '', '', 'lenderamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_transaction_record', 'productname', '成交单号', '0', 50, 1, 1, '', '', 'productname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_transaction_record', 'remainamount', '成交对手', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_transaction_record', 'remainwrpositionqty', '成交时间', '0', 70, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
-
--- 查询 -- 商品合约 -- 交收记录
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_commodity_contract_settlement_record', 2, '查询-商品合约-交收记录', '', 'web端-查询-商品合约-交收记录');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_settlement_record', 'scfcontractid', '合约', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_settlement_record', 'financetype', '交收商品', '0', 20, 1, 1, '', '', 'financetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_settlement_record', 'lenderusername', '类型', '0', 30, 1, 1, '', '', 'v', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_settlement_record', 'lenderamount', '基差', '0', 40, 1, 1, '', '', 'lenderamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_settlement_record', 'productname', '点价', '0', 50, 1, 1, '', '', 'productname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_settlement_record', 'remainamount', '成交价', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_settlement_record', 'remainwrpositionqty', '交收数量', '0', 70, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_settlement_record', 'buybackwrpositionqty', '关联成交单', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_commodity_contract_settlement_record', 'buybackwrpositionqty', '交收申请时间', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
-
--- 查询 -- 资金流水
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_capital_flow', 2, '查询-资金流水', '', 'web端-查询-资金流水');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_capital_flow', 'scfcontractid', '流水号', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_capital_flow', 'accountid', '资金账号', '0', 20, 1, 1, '', '', 'accountid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_capital_flow', 'OPERATETYPENAME', '资金类型', '0', 30, 1, 1, '', '', 'OPERATETYPENAME', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_capital_flow', 'amount', '金额', '0', 40, 1, 1, '', '', 'amount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_capital_flow', 'currentbalance', '余额', '0', 50, 1, 1, '', '', 'currentbalance', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_capital_flow', 'createtime', '时间', '0', 60, 1, 1, '', '', 'createtime', 0, 0, '');
-
--- 查询 -- 融资查询 -- 申请单
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_financing_inquiry_apply_order', 2, '查询-融资查询-申请单', '', 'web端-查询-融资查询-申请单');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'financetype', '类型', '0', 10, 1, 1, '', '', 'financetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'financename', '融出方', '0', 20, 1, 1, '', '', 'financename', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'tradeamount', '借款金额', '0', 30, 1, 1, '', '', 'tradeamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'productname', '商品', '0', 40, 1, 1, '', '', 'productname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'orderqty', '商品数量', '0', 50, 1, 1, '', '', 'orderqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'financingdays', '借款天数', '0', 60, 1, 1, '', '', 'financingdays', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'freezebuymargin', '保证金', '0', 70, 1, 1, '', '', 'freezebuymargin', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'interestsettlevalue', '费用', '0', 80, 1, 1, '', '', 'interestsettlevalue', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'interestsettlemode', '结算方式', '0', 90, 1, 1, '', '', 'interestsettlemode', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'financingdays', '最小计费天数', '0', 100, 1, 1, '', '', 'financingdays', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'applydate', '申请时间', '0', 110, 1, 1, '', '', 'applydate', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_inquiry_apply_order', 'applystatus', '状态', '0', 120, 1, 1, '', '', 'applystatus', 0, 0, '');
-
--- 查询 -- 融资查询 -- 合同
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_financing_manage_bottom_contract', 2, '查询-融资查询-合同', '', 'web端-查询-融资查询-合同');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'scfcontractid', '合同编号', '0', 10, 1, 1, '', '', 'scfcontractid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'financetype', '类型', '0', 20, 1, 1, '', '', 'financetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'lenderusername', '融出方', '0', 30, 1, 1, '', '', 'v', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'lenderamount', '借款金额', '0', 40, 1, 1, '', '', 'lenderamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'productname', '商品', '0', 50, 1, 1, '', '', 'productname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'remainamount', '剩余金额', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'remainwrpositionqty', '剩余数量', '0', 70, 1, 1, '', '', 'remainwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'buybackwrpositionqty', '已回购数量', '0', 80, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'closeinterest', '已结费用', '0', 90, 1, 1, '', '', 'closeinterest', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'unpaidinterest', '未结费用', '0', 100, 1, 1, '', '', 'unpaidinterest', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'interestdebt', '费用欠款', '0', 110, 1, 1, '', '', 'interestdebt', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'deadline', '截止日期', '0', 120, 1, 1, '', '', 'deadline', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_financing_manage_bottom_contract', 'scfcontractstatus', '状态', '0', 130, 1, 1, '', '', 'scfcontractstatus', 0, 0, '');
-
--- 查询 -- 履约查询 -- 买履约
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_performance_query_buy_performance', 2, '查询-履约查询-买履约', '', 'web端-查询-履约查询-买履约');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_buy_performance', 'wrstandardname', '商品', '0', 10, 1, 1, '', '', 'wrstandardname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_buy_performance', 'performancetype', '类型', '0', 20, 1, 1, '', '', 'performancetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_buy_performance', 'relatedorderid', '关联单号', '0', 30, 1, 1, '', '', 'relatedorderid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_buy_performance', 'amount', '总金额', '0', 40, 1, 1, '', '', 'amount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_buy_performance', 'buypaidamount', '已付金额', '0', 50, 1, 1, '', '', 'buypaidamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_buy_performance', 'sellerfreezeamountremain', '剩余冻结', '0', 60, 1, 1, '', '', 'sellerfreezeamountremain', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_buy_performance', 'overshortamount', '溢短金额', '0', 70, 1, 1, '', '', 'overshortamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_buy_performance', 'overshortqty', '溢短数量', '0', 80, 1, 1, '', '', 'overshortqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_buy_performance', 'buybackwrpositionqty', '实际金额', '0', 90, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_buy_performance', 'sellusername', '卖方', '0', 100, 1, 1, '', '', 'sellusername', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_buy_performance', 'performancestatus', '履约状态', '0', 110, 1, 1, '', '', 'performancestatus', 0, 0, '');
-
--- 查询 -- 履约查询 -- 卖履约
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_performance_query_sell_performance', 2, '查询-履约查询-卖履约', '', 'web端-查询-履约查询-卖履约');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_sell_performance', 'wrstandardname', '商品', '0', 10, 1, 1, '', '', 'wrstandardname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_sell_performance', 'performancetype', '类型', '0', 20, 1, 1, '', '', 'performancetype', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_sell_performance', 'relatedorderid', '关联单号', '0', 30, 1, 1, '', '', 'relatedorderid', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_sell_performance', 'amount', '总金额', '0', 40, 1, 1, '', '', 'amount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_sell_performance', 'buypaidamount', '已付金额', '0', 50, 1, 1, '', '', 'buypaidamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_sell_performance', 'remainamount', '剩余冻结', '0', 60, 1, 1, '', '', 'remainamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_sell_performance', 'overshortqty', '溢短数量', '0', 70, 1, 1, '', '', 'overshortqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_sell_performance', 'overshortamount', '溢短金额', '0', 80, 1, 1, '', '', 'overshortamount', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_sell_performance', 'buybackwrpositionqty', '实际金额', '0', 90, 1, 1, '', '', 'buybackwrpositionqty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_sell_performance', 'buyusername', '买方', '0', 100, 1, 1, '', '', 'buyusername', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_performance_query_sell_performance', 'performancestatus', '履约状态', '0', 110, 1, 1, '', '', 'performancestatus', 0, 0, '');
-
--- 查询 -- 提货查询
-insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_pcweb_inquire_picking_query', 2, '查询-提货查询', '', 'web端-查询-提货查询');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_picking_query', 'deliverygoodsname', '品种', '0', 10, 1, 1, '', '', 'deliverygoodsname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_picking_query', 'wrstandardname', '商品', '0', 20, 1, 1, '', '', 'wrstandardname', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_picking_query', 'warehousename', '仓库', '0', 30, 1, 1, '', '', 'warehousename', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_picking_query', 'qty', '数量', '0', 40, 1, 1, '', '', 'qty', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_picking_query', 'applytime', '时间', '0', 50, 1, 1, '', '', 'applytime', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_picking_query', 'expresscompany', '物流信息', '0', 60, 1, 1, '', '', 'expresscompany', 0, 0, '');
-insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
-values (seq_TableColumnConfig.Nextval, 'table_pcweb_inquire_picking_query', 'applystatus', '状态', '0', 70, 1, 1, '', '', 'applystatus', 0, 0, '');
-*/
 
 

BIN
ERMCP/Tools/buildsql


BIN
ERMCP/Tools/buildsql.exe