fxgl_v3_mobile_table_define.sql 364 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238
  1. set feedback off
  2. -- 删除所有客户端字段记录
  3. delete from TableColumnConfig t where t.tablekey in (select d.tablekey from TableDefine d where d.tabletype = 3);
  4. -- 删除所有客户端表记录
  5. delete from TableDefine t where t.tabletype = 3;
  6. -- ColumnWidth 默认为0,WEB交易端自己设置宽度,如果表里赋了值则使用表的宽度
  7. -- AlignType 对齐方式 - 1:居中对齐 2:左对齐 3:右对齐
  8. -- 客户资料
  9. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_userinfo', 3, '客户资料', '', '手机端-客户资料');
  10. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  11. values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'userinfotype', '客户类型', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  12. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  13. values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'customername', '客户名称', '0', 20, 1, 1, '', '', 'customername', 0, 0, '');
  14. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  15. values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'mobile', '联系人手机', '0', 30, 1, 1, '', '', 'mobile', 0, 0, '');
  16. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  17. values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'statusdesc', '状态', '0', 40, 1, 3, '', '', 'statusdesc', 0, 0, '');
  18. -- 套保计划 --
  19. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgeplan', 3, '套保计划', '', '手机端-套保计划');
  20. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  21. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'contracttype,hedgeplanno', '计划类型\n计划名称 ', '0', 10, 1, 1, '', '', 'contracttype,hedgeplanno', 0, 0, '');
  22. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  23. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'deliverygoodsname,wrstandardname', '现货商品', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
  24. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  25. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'convertfactor,planqty', '计划量 ', '0', 30, 1, 1, '', '', 'convertfactor,planqty', 0, 0, '');
  26. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  27. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'tradeusername,hedgeplanstatus', '\n状态', '0', 40, 1, 3, '', '', 'tradeusername,hedgeplanstatus', 0, 0, '');
  28. -- 现货-采购合同--待点价
  29. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_purchase_pointprice', 3, '现货-采购合同--待点价', '', '手机端-现货-采购合同--待点价');
  30. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  31. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'accountname,contractno', '销售方\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
  32. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  33. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
  34. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  35. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'goodscode,pricemove', '点价合约\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
  36. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  37. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'qty,unpricedqty', '合同量\n未定价量 ', '0', 40, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
  38. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  39. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'pricedqty,unsureqty', '已定价量\n未交收量 ', '0', 50, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
  40. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  41. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'payamount,unpayAmount', '已付款额\n应付款额 ', '0', 60, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
  42. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  43. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'invoiceamount,daikaiAmount', '已收票额\n应收票额 ', '0', 70, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
  44. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  45. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期\n交收期 ', '0', 80, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
  46. -- 现货-采购合同--待交收
  47. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_purchase_settle', 3, '现货-采购合同--待交收', '', '手机端-现货-采购合同--待交收');
  48. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  49. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'accountname,contractno', '销售方\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
  50. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  51. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
  52. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  53. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'goodscode,pricemove', '点价合约\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
  54. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  55. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'pricedqty,unsureqty', '已定价量\n未交收量 ', '0', 40, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
  56. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  57. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'payamount,unpayAmount', '已付款额\n应付款额 ', '0', 50, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
  58. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  59. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'invoiceamount,daikaiAmount', '已收票额\n应收票额 ', '0', 60, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
  60. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  61. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期\n交收期 ', '0', 70, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
  62. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  63. values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'qty,unpricedqty', '合同量\n未定价量 ', '0', 80, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
  64. -- 现货-采购\销售合同-新增合同
  65. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotcontract_new', 3, '新增合同', '', '现货-采购合同-新增合同');
  66. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  67. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'contractno,contracttype,contracctstatus', '合同编号/\n状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
  68. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  69. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'nickname,qty', '对手方/\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
  70. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  71. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'deliverygoodsname,wrstandardname', '现货品种/\n商品 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
  72. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  73. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'biztype,convertfactor', '业务类型/\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
  74. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  75. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'pricetype,goodsname', '定价类型/\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
  76. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  77. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'price,pricemove', '价格/\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
  78. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  79. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'amount,margin', '金额/\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
  80. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  81. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'amount,margin', '点价期/\n交收期 ', '0', 80, 1, 1, '', '', 'amount,margin', 0, 0, '');
  82. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  83. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'amount,margin', '业务员/\n跟单员 ', '0', 90, 1, 1, '', '', 'amount,margin', 0, 0, '');
  84. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  85. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'meruserlogincode,saleuserlogincode', '交易用户/\n结算币种 ', '0', 100, 1, 1, '', '', 'meruserlogincode,saleuserlogincode', 0, 0, '');
  86. -- 现货-采购\销售合同-已完成
  87. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotcontract_complete', 3, '已完成', '', '手机端-现货-采购合同-已完成');
  88. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  89. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'contractno,contracttype,contracctstatus', '合同编号\n状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
  90. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  91. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'nickname,qty', '对手方\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
  92. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  93. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
  94. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  95. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'biztype,convertfactor', '产品类型\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
  96. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  97. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'pricetype,goodsname', '定价类型\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
  98. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  99. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'price,pricemove', '价格\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
  100. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  101. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '金额\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
  102. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  103. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '点价期\n交收期 ', '0', 80, 1, 1, '', '', 'amount,margin', 0, 0, '');
  104. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  105. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '业务类型\n交易用户 ', '0', 90, 1, 1, '', '', 'amount,margin', 0, 0, '');
  106. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  107. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '业务员\n跟单员 ', '0', 100, 1, 1, '', '', 'amount,margin', 0, 0, '');
  108. -- 现货—期现关联-关联记录
  109. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contract_linklog', 3, '现货—合同详情-关联记录', '', '手机端-现货—合同详情-关联记录');
  110. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  111. values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '关联时间\n成交时间 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  112. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  113. values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '业务类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  114. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  115. values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '订单类型 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  116. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  117. values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '套保品种\n现货关联数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  118. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  119. values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '关联方式\n关联状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  120. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  121. values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '期货单号 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  122. -- 现货-销售合同--待点价
  123. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_sales_pointprice', 3, '销售_待点价', '', '手机端-销售-待点价');
  124. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  125. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'accountname,contractno', '采购方\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
  126. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  127. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
  128. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  129. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'goodscode,pricemove', '点价合约\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
  130. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  131. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'qty,unpricedqty', '合同量\n未定价量 ', '0', 40, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
  132. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  133. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'pricedqty,unsureqty', '已定价量\n未交收量 ', '0', 50, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
  134. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  135. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'payamount,unpayAmount', '已收款额\n应收款额 ', '0', 60, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
  136. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  137. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'invoiceamount,daikaiAmount', '已开票额\n应开票额 ', '0', 70, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
  138. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  139. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期\n交收期 ', '0', 80, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
  140. -- 现货-销售合同--待交收
  141. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_sales_settle', 3, '现货-销售合同--待交收', '', '手机端-现货-销售合同--待交收');
  142. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  143. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'accountname,contractno', '采购方/\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
  144. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  145. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'deliverygoodsname,wrstandardname', '现货品种/\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
  146. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  147. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'goodscode,pricemove', '点价合约/\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
  148. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  149. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'pricedqty,unsureqty', '已定价量/\n未交收量 ', '0', 40, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
  150. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  151. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'payamount,unpayAmount', '已收款额/\n应收款额 ', '0', 50, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
  152. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  153. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'invoiceamount,daikaiAmount', '已开票额/\n应开票额 ', '0', 60, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
  154. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  155. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期/\n交收期 ', '0', 70, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
  156. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  157. values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'qty,unpricedqty', '合同量/\n未定价量 ', '0', 80, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
  158. -- 现货审核-合同审核-待审核
  159. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotadiit_contract_unaduit', 3, '待审核', '', '手机端-现货审核-合同审核-待审核');
  160. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  161. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'contractno,contracttype,contracctstatus', '合同编号/\n类型/状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
  162. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  163. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'nickname,qty', '对手方/\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
  164. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  165. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'deliverygoodsname,wrstandardname', '现货品种/\n商品 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
  166. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  167. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'biztype,convertfactor', '业务类型/\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
  168. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  169. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'pricetype,goodsname', '定价类型/\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
  170. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  171. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'price,pricemove', '价格/\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
  172. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  173. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'amount,margin', '金额/\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
  174. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  175. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'startdate,enddate,deliverystartdate,deliveryenddate', '点价期/\n交收期 ', '0', 80, 1, 1, '', '', 'startdate,enddate,deliverystartdate,deliveryenddate', 0, 0, '');
  176. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  177. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'meruserlogincode,saleuserlogincode', '业务员/\n跟单员 ', '0', 90, 1, 1, '', '', 'meruserlogincode,saleuserlogincode', 0, 0, '');
  178. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  179. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'tradeusername,currencyname', '交易用户/\n结算币种 ', '0', 100, 1, 1, '', '', 'tradeusername,currencyname', 0, 0, '');
  180. -- 现货审核-合同审核-已审核
  181. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotadiit_contract_aduited', 3, '待审核', '', '手机端-现货审核-合同审核-已审核');
  182. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  183. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'contractno,contracttype,contracctstatus', '合同编号/\n类型/状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
  184. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  185. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'nickname,qty', '对手方/\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
  186. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  187. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'deliverygoodsname,wrstandardname', '现货品种/\n商品型号 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
  188. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  189. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'biztype,convertfactor', '产品类型/\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
  190. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  191. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'pricetype,goodsname', '定价类型/\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
  192. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  193. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'price,pricemove', '价格/\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
  194. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  195. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'amount,margin', '金额/\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
  196. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  197. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'amount,margin', '业务类型/\n交易用户 ', '0', 80, 1, 1, '', '', 'amount,margin', 0, 0, '');
  198. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  199. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'meruserlogincode,saleuserlogincode', '业务员/\n跟单员 ', '0', 90, 1, 1, '', '', 'meruserlogincode,saleuserlogincode', 0, 0, '');
  200. -- 库存管理-当前库存
  201. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_manage_current', 3, '库存管理-当前库存', '', '手机端-库存管理-当前库存');
  202. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  203. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '现货品种', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  204. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  205. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '商品/\n品牌', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  206. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  207. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  208. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  209. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '昨日量/\n今日量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  210. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  211. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '今日入库量/\n今日出库量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  212. -- 库存管理-当前库存-入库明细
  213. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_indetail', 3, '库存管理-当前库存-入库明细', '', '手机端-库存管理-当前库存-入库明细');
  214. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  215. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '入库登记时间/\n入库审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  216. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  217. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '商品/\n品牌', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  218. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  219. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  220. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  221. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '入库类型/\n入库数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  222. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  223. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '合同编号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  224. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  225. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '入库登记人/\n入库审核人', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  226. -- 库存管理-当前库存-出库明细
  227. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_outdetail', 3, '库存管理-当前库存-出库明细', '', '手机端-库存管理-当前库存-出库明细');
  228. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  229. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '出库登记时间/\n出库审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  230. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  231. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '商品/\n品牌', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  232. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  233. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  234. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  235. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '出库类型/\n出库数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  236. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  237. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '合同编号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  238. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  239. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '出库登记人/\n出库审核人', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  240. -- 库存管理-申请记录
  241. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_manage_applylog', 3, '库存管理-当前库存', '', '手机端-库存管理-当前库存');
  242. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  243. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '登记时间/\n审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  244. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  245. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '现货品种', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  246. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  247. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '类型/\n数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  248. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  249. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  250. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  251. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '合同编号', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  252. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  253. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '商品/\n品牌', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  254. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  255. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '仓库', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  256. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  257. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '申请人/\n审核人', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  258. -- 库存审核
  259. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_aduit', 3, '库存审核', '', '手机端-库存审核');
  260. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  261. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '登记时间/\n审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  262. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  263. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '现货品种', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  264. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  265. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '类型/\n数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  266. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  267. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  268. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  269. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '商品/\n品牌', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  270. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  271. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '仓库', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  272. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  273. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '合同编号', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  274. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  275. values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '申请人/\n审核人', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  276. -- 业务审核-点价
  277. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_business_aduit_dj', 3, '业务审核-点价', '', '手机端-业务审核-点价');
  278. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  279. values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'applytime,audittime', '点价登记时间/\n点价审核时间', '0', 10, 1, 1, '', '', 'applytime,audittime', 0, 0, '');
  280. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  281. values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'contracttype,contractno', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'contracttype,contractno', 0, 0, '');
  282. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  283. values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'pricedPrice,amount', '点价价格/\n点价金额', '0', 30, 1, 1, '', '', 'pricedPrice,amount', 0, 0, '');
  284. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  285. values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'contractstatus', '状态', '0', 40, 1, 1, '', '', 'contractstatus', 0, 0, '');
  286. -- 业务审核-交收
  287. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_business_aduit_js', 3, '业务审核-交收', '', '手机端-业务审核-交收');
  288. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  289. values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'applytime,audittime', '结算登记时间/\n结算审核时间', '0', 10, 1, 1, '', '', 'applytime,audittime', 0, 0, '');
  290. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  291. values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'contracttype,contractno', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'contracttype,contractno', 0, 0, '');
  292. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  293. values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'reckonrealqty,reckonotheramount', '交收量/\n其他费用', '0', 30, 1, 1, '', '', 'reckonrealqty,reckonotheramount', 0, 0, '');
  294. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  295. values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'addmargin,reckonadjustamount', '调整保证金/\n调整金额', '0', 40, 1, 1, '', '', 'addmargin,reckonadjustamount', 0, 0, '');
  296. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  297. values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'contractstatus', '状态', '0', 50, 1, 1, '', '', 'contractstatus', 0, 0, '');
  298. -- 财务审核-发票
  299. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fincial_aduit_fp', 3, '业务审核-发票', '', '手机端-业务审核-发票');
  300. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  301. values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '发票登记时间/\n发票审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  302. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  303. values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  304. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  305. values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '类型/\n金额', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  306. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  307. values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  308. -- 财务审核-款项
  309. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fincial_aduit_kx', 3, '财务审核-款项', '', '手机端-财务审核-款项');
  310. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  311. values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '款项登记时间/\n款项审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  312. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  313. values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  314. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  315. values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '类型/\n金额', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  316. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  317. values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  318. --********************************************************************报表查询***************************************************************--
  319. -- 报表-敞口报表
  320. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose', 3, '报表-敞口报表', '', '手机端-报表-敞口报表');
  321. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  322. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'middlegoodsname', '套保品种 ', '0', 10, 1, 1, '', '', 'middlegoodsname', 0, 0, '');
  323. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  324. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'hedgeqty,arbitrageqty', '套保量/\n 套利量 ', '0', 20, 1, 1, '', '', 'hedgeqty,arbitrageqty', 0, 0, '');
  325. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  326. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalspotqty,diffspotqty', '现货总量/\n 变动量 ', '0', 30, 1, 1, '', '', 'totalspotqty,diffspotqty', 0, 0, '');
  327. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  328. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'diffmgqtya,diffmgqtyb', '套保变动量/\n 套利变动量 ', '0', 40, 1, 1, '', '', 'diffmgqtya,diffmgqtyb', 0, 0, '');
  329. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  330. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'mgneedhedgeratio,needarbitrageratio', '套保比例/\n 套利比例 ', '0', 50, 1, 1, '', '', 'mgneedhedgeratio,needarbitrageratio', 0, 0, '');
  331. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  332. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'needhedgeqty,needarbitrageqty', '应套保量/\n 应套利量 ', '0', 60, 1, 1, '', '', 'needhedgeqty,needarbitrageqty', 0, 0, '');
  333. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  334. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalneedhedgeqty,diffhedgeqty', '现货应套保总量/\n 变动量 ', '0', 70, 1, 1, '', '', 'totalneedhedgeqty,diffhedgeqty', 0, 0, '');
  335. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  336. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalfutureqty,difffutuqty', '期货总量/\n 变动量 ', '0', 80, 1, 1, '', '', 'totalfutureqty,difffutuqty', 0, 0, '');
  337. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  338. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'needhedgeexposoure,diffexposure', '套保敞口/\n 变动量 ', '0', 90, 1, 1, '', '', 'needhedgeexposoure,diffexposure', 0, 0, '');
  339. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  340. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalexposure,diffqty', '总敞口/\n 变动量 ', '0', 100, 1, 1, '', '', 'totalexposure,diffqty', 0, 0, '');
  341. -- 报表-敞口报表-现货合同变动量明细-日报表
  342. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_spotcontract_day', 3, '报表-敞口报表-现货合同变动量明细-日报表', '', '手机端-报表-敞口报表-现货合同变动量明细-日报表');
  343. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  344. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '合同编号/\n 合同类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  345. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  346. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '采购方/\n 销售方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  347. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  348. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '现货品种/\n 现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  349. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  350. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '期现用途/\n 今定价量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  351. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  352. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '套保品种/\n 套保变动量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  353. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  354. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '应套保变动量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  355. -- 报表-敞口报表-现货合同变动量明细-周月报表
  356. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_spotcontract_weekmonth', 3, '报表-敞口报表-现货合同变动量明细-周月报表', '', '手机端-报表-敞口报表-现货合同变动量明细-周月报表');
  357. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  358. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  359. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  360. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '合同编号/\n 合同类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  361. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  362. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '采购方/\n 销售方 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  363. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  364. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '现货品种/\n 现货商品 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  365. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  366. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '期现用途/\n 今定价量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  367. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  368. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '套保品种/\n 套保变动量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  369. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  370. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '应套保变动量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  371. -- 报表-敞口报表-套保计划变动量明细-日报表
  372. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_hedgeplan_day', 3, '报表-敞口报表-套保计划变动量明细-日报表', '', '手机端-报表-敞口报表-套保计划变动量明细-日报表');
  373. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  374. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'contracttype,hedgeplanno', '计划类型/\n 计划名称 ', '0', 10, 1, 1, '', '', 'contracttype,hedgeplanno', 0, 0, '');
  375. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  376. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'deliverygoodsname,middlegoodsname', '现货品种/\n 套保品种 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,middlegoodsname', 0, 0, '');
  377. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  378. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'wrstandardname,qty', '现货商品/\n 计划量 ', '0', 30, 1, 1, '', '', 'wrstandardname,qty', 0, 0, '');
  379. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  380. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'diffqty,changqty', '套保品种今变动量/\n 应套保总量变动量 ', '0', 40, 1, 1, '', '', 'diffqty,changqty', 0, 0, '');
  381. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  382. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'biztype,tradedate', '期现用途/\n 登记日 ', '0', 50, 1, 1, '', '', 'biztype,tradedate', 0, 0, '');
  383. -- 报表-敞口报表-套保计划变动量明细-周月报表
  384. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_hedgeplan_weekmonth', 3, '报表-敞口报表-套保计划变动量明细-周月报表', '', '手机端-报表-敞口报表-套保计划变动量明细-周月报表');
  385. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  386. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'tradedate', '日期', '0', 10, 1, 1, '', '', 'tradedate', 0, 0, '');
  387. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  388. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'contracttype,hedgeplanno', '计划类型/\n 计划名称 ', '0', 20, 1, 1, '', '', 'contracttype,hedgeplanno', 0, 0, '');
  389. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  390. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'deliverygoodsname,middlegoodsname', '现货品种/\n 套保品种 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,middlegoodsname', 0, 0, '');
  391. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  392. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'wrstandardname,qty', '现货商品/\n 计划量 ', '0', 40, 1, 1, '', '', 'wrstandardname,qty', 0, 0, '');
  393. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  394. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'diffqty,changqty', '套保品种今变动量/\n 应套保总量变动量 ', '0', 50, 1, 1, '', '', 'diffqty,changqty', 0, 0, '');
  395. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  396. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'biztype,tradedate', '期现用途/\n 登记日 ', '0', 60, 1, 1, '', '', 'biztype,tradedate', 0, 0, '');
  397. -- 报表-敞口报表-期货变动量明细-日报表
  398. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_futures_day', 3, '报表-敞口报表-期货变动量明细-日报表', '', '手机端-报表-敞口报表-期货变动量明细-日报表');
  399. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  400. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '交易账户/\n 交易品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  401. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  402. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '交易合约/\n 方向 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  403. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  404. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '期初持仓量/\n 期末持仓量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  405. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  406. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '今开仓量/\n 今平仓量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  407. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  408. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '交易品种今变化量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  409. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  410. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '套保品种/\n套保品种今变化量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  411. -- 报表-敞口报表-期货变动量明细-周月报表
  412. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_futures_weekmonth', 3, '报表-敞口报表-期货变动量明细-周月报表', '', '手机端-报表-敞口报表-期货变动量明细-周月报表');
  413. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  414. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  415. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  416. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '交易账户/\n 交易品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  417. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  418. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '交易合约/\n 方向 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  419. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  420. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '期初持仓量/\n 期末持仓量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  421. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  422. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '今开仓量/\n 今平仓量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  423. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  424. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '交易品种今变化量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  425. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  426. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '套保品种/\n套保品种今变化量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  427. -- 报表-敞口报表-参数调整变动量明细-日报表
  428. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_adjust_day', 3, '报表-敞口报表-参数调整变动量明细-日报表', '', '手机端-报表-敞口报表-参数调整变动量明细-日报表');
  429. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  430. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '套保品种/\n 参数类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  431. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  432. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '调整前参数值/\n 调整后参数值 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  433. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  434. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '套保总量/\n 应套保总量变化量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  435. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  436. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '调整前应套保总量/\n 调整后应套保总量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  437. -- 报表-敞口报表-参数调整变动量明细-周月报表
  438. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_adjust_weekmonth', 3, '报表-敞口报表-参数调整变动量明细-周月报表', '', '手机端-报表-敞口报表-参数调整变动量明细-周月报表');
  439. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  440. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  441. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  442. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '套保品种/\n 参数类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  443. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  444. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '调整前参数值/\n 调整后参数值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  445. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  446. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '套保总量/\n 应套保总量变化量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  447. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  448. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '调整前应套保总量/\n 调整后应套保总量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  449. -- 报表-现货报表
  450. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_spot', 3, '报表-现货报表', '', '手机端-报表-现货报表');
  451. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  452. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'currencyname,deliverygoodsname', '结算币种/\n 现货品种', '0', 10, 1, 1, '', '', 'currencyname,deliverygoodsname', 0, 0, '');
  453. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  454. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'oriqty,curqty', '期初量/\n 期末量 ', '0', 30, 1, 1, '', '', 'oriqty,curqty', 0, 0, '');
  455. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  456. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'todaybuyqty,todaysellqty', '今采购量/\n 今销售量 ', '0', 40, 1, 1, '', '', 'todaybuyqty,todaysellqty', 0, 0, '');
  457. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  458. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'oriamount,curamount', '期初额/\n 期末额 ', '0', 50, 1, 1, '', '', 'oriamount,curamount', 0, 0, '');
  459. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  460. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'oriaverageprice,curaverageprice', '期初均价/\n 期末均价 ', '0', 60, 1, 1, '', '', 'oriaverageprice,curaverageprice', 0, 0, '');
  461. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  462. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'todaybuyamount,todaysellamount', '今采购额/\n 今销售额 ', '0', 70, 1, 1, '', '', 'todaybuyamount,todaysellamount', 0, 0, '');
  463. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  464. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'todaybuyaverageprice,todaysellaverageprice', '采购均价/\n 销售均价 ', '0', 80, 1, 1, '', '', 'todaybuyaverageprice,todaysellaverageprice', 0, 0, '');
  465. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  466. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'actualpl,floatpl', '现货损益/\n 浮动损益 ', '0', 90, 1, 1, '', '', 'actualpl,floatpl', 0, 0, '');
  467. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  468. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'curspotprice,curmarketvalue', '期末市值 ', '0', 100, 1, 1, '', '', 'curspotprice,curmarketvalue', 0, 0, '');
  469. -- 报表-现货报表-日报表明细
  470. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_spot_daydetail', 3, '报表-现货报表-日报表明细', '', '手机端-报表-现货报表-日报表明细');
  471. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  472. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '结算币种/\n 现货品种', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  473. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  474. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  475. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  476. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '期初量/\n 期末量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  477. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  478. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '今采购量/\n 今销售量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  479. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  480. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '期初额/\n 期末额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  481. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  482. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '期初均价/\n 期末均价 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  483. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  484. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '今采购额/\n 今销售额 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  485. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  486. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '采购均价/\n 销售均价 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  487. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  488. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '现货损益/\n 浮动损益 ', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  489. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  490. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '最新价/\n 期末市值 ', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  491. -- 报表-现货报表-周月报表明细
  492. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_spot_weekmonthdetail', 3, '报表-现货报表-周月报表明细', '', '手机端-报表-现货报表-周月报表明细');
  493. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  494. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  495. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  496. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '结算币种/\n 现货品种', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  497. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  498. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  499. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  500. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '期初量/\n 期末量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  501. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  502. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '今采购量/\n 今销售量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  503. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  504. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '期初额/\n 期末额 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  505. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  506. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '期初均价/\n 期末均价 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  507. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  508. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '今采购额/\n 今销售额 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  509. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  510. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '采购均价/\n 销售均价 ', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  511. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  512. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '现货损益/\n 浮动损益 ', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  513. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  514. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '最新价/\n 期末市值 ', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  515. -- 报表-财务报表
  516. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial', 3, '报表-财务报表', '', '手机端-报表-财务报表');
  517. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  518. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'currencyname', '结算币种', '0', 10, 1, 1, '', '', 'currencyname', 0, 0, '');
  519. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  520. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buytodaysettleamount,buytodayrefundamount', '今付货款额/\n 今收退款额 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  521. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  522. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'selltodaysettleamount,buyunpaidamount', '今收货款额/\n 今付退款额 ', '0', 30, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  523. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  524. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buytodayinvoiceamount,selltodayinvoiceamount', '今收票额/\n 今开票额', '0', 40, 1, 1, '', '', 'applyname', 0, 0, '');
  525. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  526. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buyprepaidamount,buyunpaidamount', '预付货款额/\n 应付货款额', '0', 50, 1, 1, '', '', 'buyprepaidamount,buyunpaidamount', 0, 0, '');
  527. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  528. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buypreinvoicedamount,buyuninvoicedamount', '预收票额/\n 应收票额', '0', 60, 1, 1, '', '', 'buypreinvoicedamount,buyuninvoicedamount', 0, 0, '');
  529. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  530. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'sellprepaidamount,sellunpaidamount', '预收货款额/\n 应收货款额', '0', 70, 1, 1, '', '', 'sellprepaidamount,sellunpaidamount', 0, 0, '');
  531. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  532. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'sellpreinvoicedamount,selluninvoicedamount', '预开票额/\n 应开票额', '0', 80, 1, 1, '', '', 'sellpreinvoicedamount,selluninvoicedamount', 0, 0, '');
  533. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  534. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'todayreceivesum,todaypaysum', '今收款合计/\n 今付款合计', '0', 90, 1, 1, '', '', 'todayreceivesum,todaypaysum', 0, 0, '');
  535. -- 报表-财务报表-商品日报表明细
  536. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_wrstandard_daydetail', 3, '报表-财务报表-商品日报表明细', '', '手机端-报表-财务报表-商品日报表明细');
  537. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  538. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'logdatetime', '结算币种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
  539. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  540. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'logtypename,relatedno', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  541. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  542. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  543. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  544. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  545. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  546. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '今收票额/\n 今开票额', '0', 50, 1, 1, '', '', 'applyname', 0, 0, '');
  547. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  548. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预付货款额/\n 应付货款额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
  549. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  550. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预收票额/\n 应收票额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
  551. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  552. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预收货款额/\n 应收货款额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
  553. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  554. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预开票额/\n 应开票额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
  555. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  556. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '今收款合计/\n 今付款合计', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
  557. -- 报表-财务报表-商品周月报表明细
  558. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_wrstandard_weekmonthdetail', 3, '报表-财务报表-商品周月报表明细', '', '手机端-报表-财务报表-商品日报表明细');
  559. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  560. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'logdatetime', '日期/\n结算币种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
  561. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  562. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'logtypename,relatedno', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  563. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  564. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  565. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  566. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  567. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  568. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '今收票额/\n 今开票额', '0', 50, 1, 1, '', '', 'applyname', 0, 0, '');
  569. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  570. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预付货款额/\n 应付货款额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
  571. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  572. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预收票额/\n 应收票额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
  573. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  574. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预收货款额/\n 应收货款额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
  575. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  576. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预开票额/\n 应开票额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
  577. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  578. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '今收款合计/\n 今付款合计', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
  579. -- 报表-财务报表-品牌日报表明细
  580. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_brand_daydetail', 3, '报表-财务报表-品牌日报表明细', '', '手机端-报表-财务报表-品牌日报表明细');
  581. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  582. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'logdatetime', '结算币种/\n现货品种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
  583. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  584. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'logtypename,relatedno', '现货商品/\n 现货品牌 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  585. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  586. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  587. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  588. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  589. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  590. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '今收票额/\n 今开票额', '0', 50, 1, 1, '', '', 'applyname', 0, 0, '');
  591. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  592. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预付货款额/\n 应付货款额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
  593. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  594. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预收票额/\n 应收票额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
  595. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  596. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预收货款额/\n 应收货款额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
  597. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  598. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预开票额/\n 应开票额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
  599. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  600. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '今收款合计/\n 今付款合计', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
  601. -- 报表-财务报表-品牌周月报表明细
  602. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_brand_weekmonthdetail', 3, '报表-财务报表-商品周月报表明细', '', '手机端-报表-财务报表-商品日报表明细');
  603. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  604. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logdatetime', '日期/\n结算币种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
  605. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  606. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logtypename,relatedno', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  607. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  608. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logtypename,relatedno', '现货品牌', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  609. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  610. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 40, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  611. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  612. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  613. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  614. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '今收票额/\n 今开票额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
  615. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  616. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预付货款额/\n 应付货款额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
  617. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  618. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预收票额/\n 应收票额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
  619. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  620. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预收货款额/\n 应收贷货款额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
  621. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  622. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预开票额/\n 应开票额', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
  623. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  624. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '今收款合计/\n 今付款合计', '0', 110, 1, 1, '', '', 'applyname', 0, 0, '');
  625. -- 报表-汇总损益报表
  626. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_sumprofit', 3, '报表-汇总损益报表', '', '手机端-报表-汇总损益报表');
  627. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  628. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'currencyname', '结算币种', '0', 10, 1, 1, '', '', 'currencyname', 0, 0, '');
  629. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  630. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'spotactualpl,spotfloatpl', '套保品种/\n 单位 ', '0', 20, 1, 1, '', '', 'spotactualpl,spotfloatpl', 0, 0, '');
  631. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  632. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'futureactualpl,futurefloatpl', '现货总量/\n 计划套保量 ', '0', 30, 1, 1, '', '', 'futureactualpl,futurefloatpl', 0, 0, '');
  633. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  634. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '期货持仓量/\n 期现比例', '0', 40, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
  635. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  636. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '现货损益/\n 现货浮动损益', '0', 50, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
  637. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  638. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '期货损益/\n 期货浮动损益', '0', 60, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
  639. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  640. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '总敞口损益/\n 套保敞口损益', '0', 70, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
  641. -- 报表-汇总损益报表-周月报表明细
  642. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_sumprofit_weekmonthdetail', 3, '报表-汇总损益报表-周月报表明细', '', '手机端-报表-汇总损益报表-周月报表明细');
  643. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  644. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logdatetime', '日期 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
  645. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  646. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logdatetime', '结算币种/\n 套保品种 ', '0', 20, 1, 1, '', '', 'logdatetime', 0, 0, '');
  647. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  648. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logtypename,relatedno', '现货总量/\n 计划套保量 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  649. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  650. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logtypename,relatedno', '期货持仓量/\n 期现比例 ', '0', 40, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  651. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  652. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logvalue', '现货损益/\n 现货浮动损益 ', '0', 50, 1, 1, '', '', 'logvalue', 0, 0, '');
  653. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  654. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'sumactualpl,sumpl', '期货损益/\n 期货浮动损益', '0', 60, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
  655. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  656. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'sumactualpl,sumpl', '总敞口损益/\n 套保敞口损益', '0', 70, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
  657. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  658. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'sumactualpl,sumpl', '单位', '0', 80, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
  659. -- 报表-期货报表
  660. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_futures', 3, '报表-期货报表', '', '手机端-报表-期货报表');
  661. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  662. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'logdatetime', '结算币种/\n 交易品种 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
  663. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  664. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'logtypename,relatedno', '交易合约/\n 方向 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  665. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  666. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'logtypename,relatedno', '期初持仓量/\n 期末持仓量 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  667. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  668. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '今开仓量/\n 今平仓量 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  669. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  670. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '期初开仓额/\n 期末开仓额 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  671. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  672. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '期初持仓额/\n 期末持仓额 ', '0', 60, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  673. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  674. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '今开仓额/\n 今平仓额 ', '0', 70, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  675. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  676. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '开仓均价/\n 平仓均价 ', '0', 80, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  677. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  678. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '结算价/\n 结算持仓额 ', '0', 90, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  679. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  680. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '平仓损益/\n 结算损益 ', '0', 100, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  681. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  682. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '手续费/\n 交易品种期末量 ', '0', 110, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  683. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  684. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '套保品种/\n 套保品种变动量 ', '0', 120, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  685. -- 报表-期货报表_账户明细-日报表
  686. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_futures_daydetail', 3, '报表-期货报表_账户明细_日报表', '', '手机端-报表-期货报表_账户明细_日报表');
  687. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  688. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'logdatetime', '交易账户/\n 结算币种 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
  689. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  690. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'logtypename,relatedno', '交易品种/\n 交易合约/方向 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  691. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  692. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'logtypename,relatedno', '期初持仓量/\n 期末持仓量 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  693. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  694. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '今开仓量/\n 今平仓量 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  695. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  696. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '期初开仓额/\n 期末开仓额 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  697. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  698. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '期初持仓额/\n 期末持仓额 ', '0', 60, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  699. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  700. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '今开仓额/\n 今平仓额 ', '0', 70, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  701. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  702. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '开仓均价/\n 平仓均价 ', '0', 80, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  703. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  704. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '结算价/\n 结算持仓额 ', '0', 90, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  705. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  706. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '平仓损益/\n 结算损益 ', '0', 100, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  707. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  708. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '手续费/\n 交易品种期末量 ', '0', 110, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  709. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  710. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '套保品种/\n 套保品种变动量 ', '0', 120, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  711. -- 报表-期货报表_账户明细-周月报表
  712. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_futures_weekmonthdetail', 3, '报表-期货报表_账户明细_周月报表', '', '手机端-报表-期货报表_账户明细_周月报表');
  713. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  714. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logdatetime', '日期 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
  715. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  716. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logdatetime', '交易账户/\n 结算币种 ', '0', 20, 1, 1, '', '', 'logdatetime', 0, 0, '');
  717. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  718. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logtypename,relatedno', '交易品种/\n 交易合约/方向 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  719. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  720. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logtypename,relatedno', '期初持仓量/\n 期末持仓量 ', '0', 40, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
  721. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  722. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '今开仓量/\n 今平仓量 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  723. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  724. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '期初开仓额/\n 期末开仓额 ', '0', 60, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  725. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  726. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '期初持仓额/\n 期末持仓额 ', '0', 70, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  727. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  728. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '今开仓额/\n 今平仓额 ', '0', 80, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  729. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  730. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '开仓均价/\n 平仓均价 ', '0', 90, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  731. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  732. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '结算价/\n 结算持仓额 ', '0', 100, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  733. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  734. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '平仓损益/\n 结算损益 ', '0', 110, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  735. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  736. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '手续费/\n 交易品种期末量 ', '0', 120, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  737. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  738. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '套保品种/\n 套保品种变动量 ', '0', 130, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
  739. -- 报表-库存报表(商品维度)
  740. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock', 3, '报表-库存报表(商品维度)', '', '手机端-报表-库存报表(商品维度)');
  741. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  742. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'deliverygoodsname,wrstandardname', '现货品种/\n 现货商品 ', '0', 10, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
  743. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  744. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'diffqty', '库存变化量 ', '0', 20, 1, 1, '', '', 'diffqty', 0, 0, '');
  745. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  746. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'oristock,curstock', '期初库存量/\n 期末库存量 ', '0', 30, 1, 1, '', '', 'oristock,curstock', 0, 0, '');
  747. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  748. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'todaybuyinqty,todayselloutqty', '采购入库量/\n 销售出库量 ', '0', 40, 1, 1, '', '', 'todaybuyinqty,todayselloutqty', 0, 0, '');
  749. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  750. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'todayproduceinqty,todayproduceoutqty', '内部入库量/\n 内部出库量 ', '0', 50, 1, 1, '', '', 'todayproduceinqty,todayproduceoutqty', 0, 0, '');
  751. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  752. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'unbuyinqty,unselloutqty', '采购未入库量/\n 销售未出库量 ', '0', 60, 1, 1, '', '', 'unbuyinqty,unselloutqty', 0, 0, '');
  753. -- 报表-库存报表(商品维度)_仓库日报表明细
  754. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_warehouse_daydetail', 3, '报表-库存报表(商品维度)_仓库日报表明细', '', '手机端-报表-库存报表(商品维度)_仓库日报表明细');
  755. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  756. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  757. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  758. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '现货品牌/\n仓库 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  759. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  760. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '库存变化量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  761. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  762. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '期初库存量/\n 期末库存量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  763. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  764. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '采购入库量/\n 销售出库量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  765. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  766. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  767. -- 报表-库存报表(商品维度)_仓库周月报表明细
  768. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 3, '报表-库存报表(商品维度)_仓库周月报表明细', '', '手机端-报表-库存报表(商品维度)_仓库周月报表明细');
  769. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  770. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '日期 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  771. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  772. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  773. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  774. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetable_mobile_report_wrstandstock_warehouse_weekmonthdetailtail', 'userinfotype', '现货品牌/\n仓库 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  775. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  776. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '库存变化量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  777. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  778. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '期初库存量/\n 期末库存量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  779. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  780. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '采购入库量/\n 销售出库量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  781. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  782. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  783. -- 报表-库存报表-(商品维度)_品牌日报表明细
  784. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_brand_daydetail', 3, '-报表-库存报表-品牌日报表明细', '', '手机端-报表-库存报表-品牌日报表明细');
  785. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  786. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  787. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  788. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '现货品牌/\n 库存变化量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  789. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  790. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  791. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  792. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  793. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  794. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  795. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  796. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '采购未入库量/\n 销售未出库量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  797. -- 报表-库存报表-(商品维度)_品牌周月报表明细
  798. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_brand_weekmonthdetail', 3, '-报表-库存报表-品牌周月报表明细', '', '手机端-报表-库存报表-品牌周月报表明细');
  799. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  800. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '日期 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  801. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  802. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  803. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  804. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '现货品牌/\n 库存变化量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  805. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  806. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  807. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  808. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  809. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  810. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  811. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  812. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '采购未入库量/\n 销售未出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  813. -- 报表-库存报表-(仓库维度)
  814. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_warehousestock', 3, '-报表-库存报表-(仓库维度)', '', '手机端-报表-库存报表-(仓库维度)');
  815. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  816. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'warehousename,deliverygoodsname', '仓库/\n 现货品种 ', '0', 20, 1, 1, '', '', 'warehousename,deliverygoodsname', 0, 0, '');
  817. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  818. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'wrstandardname,diffqty', '现货商品/\n 库存变化量 ', '0', 30, 1, 1, '', '', 'wrstandardname,diffqty', 0, 0, '');
  819. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  820. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'oristock,curstock', '期初库存量/\n 期末库存量', '0', 50, 1, 1, '', '', 'oristock,curstock', 0, 0, '');
  821. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  822. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'todaybuyinqty,todayselloutqty', '采购入库量/\n 销售出库量', '0', 60, 1, 1, '', '', 'todaybuyinqty,todayselloutqty', 0, 0, '');
  823. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  824. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'todayproduceinqty,todayproduceoutqty', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'todayproduceinqty,todayproduceoutqty', 0, 0, '');
  825. -- 报表-库存报表-(仓库维度)_日报表明细
  826. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_warehousestock_daydetail', 3, '-报表-库存报表-(仓库维度)_日报表明细', '', '手机端-报表-库存报表-(仓库维度)_日报表明细');
  827. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  828. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '仓库/\n 现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  829. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  830. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  831. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  832. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '库存变化量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  833. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  834. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  835. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  836. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  837. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  838. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  839. -- 报表-库存报表-(仓库维度)_周月报表明细
  840. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_warehousestock_weekmonthdetail', 3, '-报表-库存报表-(仓库维度)_周月报表明细', '', '手机端-报表-库存报表-(仓库维度)_周月报表明细');
  841. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  842. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '日期 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  843. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  844. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '仓库/\n 现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  845. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  846. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  847. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  848. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '库存变化量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  849. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  850. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  851. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  852. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  853. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  854. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  855. -- 报表-定价报表
  856. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_pricing', 3, '报表-定价报表', '', '手机端-报表-定价报表');
  857. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  858. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '交易对手方/\n现货类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  859. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  860. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '现货商品/\n 套保品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  861. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  862. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '期现价格差 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  863. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  864. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '期现数量差 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  865. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  866. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '今日定价均价/\n 今日定价量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  867. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  868. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '今日点价登记均价/\n 今日期货成交均价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  869. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  870. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '套保计划量/\n 今日期货关联成交量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  871. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  872. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '现货品种 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  873. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  874. values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '合同编号/\n 日期 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  875. -- *******************************************************************************风管审核****************************************************************************** --
  876. -- 风管审核-增值税税率
  877. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_taxrate', 3, '风管审核-增值税税率', '', '手机端-风管审核-增值税税率');
  878. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  879. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  880. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  881. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  882. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  883. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '原值%/\n新值% ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  884. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  885. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '申请时间 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  886. -- 风管审核-折算系数
  887. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_coefficient', 3, '风管审核-折算系数', '', '手机端-风管审核-折算系数');
  888. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  889. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '商品/\n套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  890. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  891. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  892. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  893. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '原值/\n新值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  894. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  895. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '申请时间 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  896. -- 风管审核-成本权重
  897. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_costweight', 3, '风管审核-成本权重', '', '手机端-风管审核-成本权重');
  898. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  899. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '商品/\n套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  900. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  901. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  902. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  903. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '原值/\n新值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  904. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  905. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '申请时间 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  906. -- 风管审核-套保比例
  907. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_hedgerate', 3, '风管审核-套保比例', '', '手机端-风管审核-套保比例');
  908. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  909. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_hedgerate', 'userinfotype', '套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  910. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  911. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_hedgerate', 'userinfotype', '原值%/\n新值% ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  912. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  913. values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_hedgerate', 'userinfotype', '申请时间 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  914. -- 现货商品-修改流水-增值税税率
  915. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_delivery_log_taxrate', 3, '现货商品-修改流水-增值税税率', '', '手机端-现货商品-修改流水-增值税税率');
  916. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  917. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  918. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  919. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '申请时间/\n审核时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  920. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  921. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '修改前值%/\n修改后值% ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  922. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  923. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '申请人/\n审核人 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  924. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  925. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  926. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  927. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '审核备注 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  928. -- 现货商品-修改流水-折算系数
  929. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_delivery_log_coefficient', 3, '现货商品-修改流水-折算系数', '', '手机端-现货商品-修改流水-折算系数');
  930. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  931. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '商品/\n套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  932. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  933. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '申请时间/\n审核时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  934. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  935. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '修改前值/\n修改后值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  936. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  937. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '申请人/\n审核人 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  938. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  939. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  940. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  941. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '审核备注 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  942. -- 现货商品-修改流水-成本权重
  943. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_delivery_log_costweight', 3, '现货商品-修改流水-成本权重', '', '手机端-现货商品-修改流水-成本权重');
  944. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  945. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  946. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  947. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '申请时间/\n审核时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  948. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  949. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '修改前值%/\n修改后值% ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  950. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  951. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '申请人/\n审核人 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  952. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  953. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  954. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  955. values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '审核备注 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  956. -- *******************************************************************************期现关联****************************************************************************** --
  957. -- 现货——期现关联-外部成交单关联
  958. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotfuturerelate_outertradeorder', 3, '现货—期现关联-外部成交单关联', '', '手机端-现货—期现关联-外部成交单关联');
  959. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  960. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '合约名称/\n代码 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  961. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  962. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '成交时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  963. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  964. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '外部期货账号/\n方向 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  965. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  966. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '成交数量/\n成交价格 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  967. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  968. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '外部订单号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  969. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  970. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '结算币种 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  971. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  972. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '交易所 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  973. -- 现货—期现关联-期现单据关联
  974. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotfuturerelate_order', 3, '现货—期现关联-期现单据关联', '', '手机端-现货—期现关联-期现单据关联');
  975. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  976. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '合约名称\n代码 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  977. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  978. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  979. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  980. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '订单类型\n成交价格 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  981. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  982. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '成交数量\n已关联数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  983. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  984. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '期货单号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  985. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  986. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '用户名称 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  987. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  988. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '期货账户名称 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  989. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  990. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '期货账户代码 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  991. -- 现货—期现关联-关联记录
  992. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotfuturerelate_logs', 3, '现货—期现关联-关联记录', '', '手机端-现货—期现关联-关联记录');
  993. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  994. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '业务类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  995. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  996. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '关联数量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  997. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  998. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '现货编号 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  999. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1000. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '期货订单号 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1001. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1002. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '期货成交时间 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1003. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1004. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '用户名称 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1005. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1006. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '期货账户 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1007. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1008. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '合约名称\n代码 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1009. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1010. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '订单类型 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1011. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1012. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '成交数量 ', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1013. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1014. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '成交价格 ', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1015. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1016. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '关联时间 ', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1017. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1018. values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '关联方式\n关联状态 ', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1019. -- *******************************************************************************敞口****************************************************************************** --
  1020. -- 敞口--实时敞口
  1021. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_realtime', 3, '敞口--实时敞口', '', '手机端-敞口--实时敞口');
  1022. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1023. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'middleGoodsName,middleGoodsCode', '套保品种\n 代码 ', '0', 10, 1, 1, '', '', 'middleGoodsName,middleGoodsCode', 0, 0, '');
  1024. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1025. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'middleGoodsName,middleGoodsCode', '套保量\n 套利量 ', '0', 20, 1, 1, '', '', 'middleGoodsName,middleGoodsCode', 0, 0, '');
  1026. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1027. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'totalNeedHedgeQty,totalFutureQty', '现货总量\n 变动量 ', '0', 30, 1, 1, '', '', 'totalNeedHedgeQty,totalFutureQty', 0, 0, '');
  1028. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1029. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'needHedgeExposoure,needHedgeRatio', '套保变动量\n 套利变动量 ', '0', 40, 1, 1, '', '', 'needHedgeExposoure,needHedgeRatio', 0, 0, '');
  1030. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1031. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'totalExposure,totalHedgeRatio', '套保比例\n 套利比例 ', '0', 50, 1, 1, '', '', 'totalExposure,totalHedgeRatio', 0, 0, '');
  1032. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1033. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalSpotQty,diffSpotQty', '应套保量\n 应套利量 ', '0', 60, 1, 1, '', '', 'oriTotalSpotQty,diffSpotQty', 0, 0, '');
  1034. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1035. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '现货应套保总量\n 变动量 ', '0', 70, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
  1036. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1037. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '期货总量\n 变动量 ', '0', 80, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
  1038. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1039. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '套保敞口\n 变动量 ', '0', 90, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
  1040. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1041. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '总敞口\n 变动量 ', '0', 100, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
  1042. -- 敞口--现货头寸
  1043. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_spotposition', 3, '敞口--现货头寸', '', '手机端-敞口--现货头寸');
  1044. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1045. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'wrstandardname,wrstandardcode', '现货商品 ', '0', 10, 1, 1, '', '', 'wrstandardname,wrstandardcode', 0, 0, '');
  1046. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1047. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'oritoalspotqty', '昨日数量', '0', 20, 1, 1, '', '', 'oritoalspotqty', 0, 0, '');
  1048. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1049. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'increaseqty,decreaseqty', '增加数量\n减少数量 ', '0', 30, 1, 1, '', '', 'increaseqty,decreaseqty', 0, 0, '');
  1050. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1051. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'totalspotqty', '当前数量', '0', 40, 1, 1, '', '', 'totalspotqty', 0, 0, '');
  1052. -- 敞口--期货头寸
  1053. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_futuresposition', 3, '敞口--期货头寸', '', '手机端-敞口--期货头寸');
  1054. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1055. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'goodsname,goodscode', '期货合约\n代码 ', '0', 10, 1, 1, '', '', 'goodsname,goodscode', 0, 0, '');
  1056. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1057. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'totalydqty', '昨日数量', '0', 20, 1, 1, '', '', 'totalydqty', 0, 0, '');
  1058. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1059. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'increaseqty,decreaseqty', '增加数量\n减少数量 ', '0', 30, 1, 1, '', '', 'increaseqty,decreaseqty', 0, 0, '');
  1060. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1061. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'totalcurqty', '当前数量', '0', 40, 1, 1, '', '', 'totalcurqty', 0, 0, '');
  1062. -- 敞口--实时敞口--期货明细
  1063. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_futures_detail', 3, '敞口--实时敞口--期货明细', '', '手机端-敞口--实时敞口--期货明细');
  1064. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1065. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'goodsname,goodscode', '期货合约\n代码 ', '0', 10, 1, 1, '', '', 'goodsname,goodscode', 0, 0, '');
  1066. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1067. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'ydqty,curqty', '昨日持仓\n当前持仓 ', '0', 20, 1, 1, '', '', 'ydqty,curqty', 0, 0, '');
  1068. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1069. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'diffqty', '持仓变动量', '0', 30, 1, 1, '', '', 'diffqty', 0, 0, '');
  1070. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1071. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'diffhedgeqty', '(套保品种)\n变动量 ', '0', 40, 1, 1, '', '', 'diffhedgeqty', 0, 0, '');
  1072. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1073. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'agreeunit,convertratio', '合约单位\n期货品种系数 ', '0', 50, 1, 1, '', '', 'agreeunit,convertratio', 0, 0, '');
  1074. -- 敞口--实时敞口--现货明细
  1075. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_spot_detail', 3, '敞口--实时敞口--现货明细', '', '手机端-敞口--实时敞口--现货明细');
  1076. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1077. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '时间\n类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1078. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1079. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '现货商品\n数量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1080. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1081. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '(套保品种)\n变动量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1082. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1083. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '合同(计划)编号 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1084. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1085. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '折算系数 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1086. -- 敞口--现货头寸--现货明细
  1087. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_spotposition_detail', 3, '敞口--现货头寸--现货明细', '', '手机端-敞口--现货头寸--现货明细');
  1088. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1089. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'strtime\nrelatedid', '时间\n编号 ', '0', 10, 1, 1, '', '', 'strtime\nrelatedid', 0, 0, '');
  1090. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1091. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'contracttype', '类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
  1092. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1093. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'wrstandardname', '现货品种', '0', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
  1094. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1095. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'qty', '数量', '0', 40, 1, 1, '', '', 'qty', 0, 0, '');
  1096. -- 敞口--期货头寸--期货明细
  1097. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_futuresposition_detail', 3, '敞口--现货头寸--期货明细', '', '手机端-敞口--现货头寸--期货明细');
  1098. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1099. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '时间\n期货合约 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1100. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1101. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '方向', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1102. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1103. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '开平', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1104. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1105. values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '数量(手)', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1106. -- *******************************************************************************资金查询****************************************************************************** --
  1107. -- 资金查询--用户资金
  1108. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fundsearch_userinfo', 3, '资金查询--用户资金', '', '手机端-资金查询--用户资金');
  1109. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1110. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '登录账号\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1111. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1112. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '客户类型\n名称 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1113. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1114. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '资金账号\n手机号码', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1115. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1116. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '期末余额\n期初余额', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1117. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1118. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '今日充值入金\n今日支付入金 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1119. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1120. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '今日全额平仓金额\n今日全额建仓金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1121. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1122. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '今日出金', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1123. -- 资金查询--资金流水
  1124. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fundsearch_flow', 3, '资金查询--资金流水', '', '手机端-资金查询--资金流水');
  1125. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1126. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '日期+时间\n结算币种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1127. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1128. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '所属机构\n用户名称 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1129. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1130. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '期货账户\n商品/代码', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1131. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1132. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '操作类型\n变动金额', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1133. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1134. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '变动前金额\n变动后金额 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1135. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1136. values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '关联单号 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1137. -- *******************************************************************************套保查询****************************************************************************** --
  1138. -- 套保查询--现货合同
  1139. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgesearch_spot', 3, '套保查询--现货合同', '', '手机端-套保查询--现货合同');
  1140. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1141. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '日期+时间\n交易用户 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1142. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1143. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '合同编号\n合同类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1144. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1145. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '采购方\n销售方', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1146. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1147. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '现货品种\n现货商品', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1148. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1149. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '现货品牌\n期限用途 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1150. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1151. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '今定价量\n定价金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1152. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1153. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '均价\n套保品种 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1154. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1155. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '套保变动量\n应套保变动量 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1156. -- 套保查询--套保计划
  1157. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgesearch_plan', 3, '套保查询--套保计划', '', '手机端-套保查询--套保计划');
  1158. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1159. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '日期+时间\n交易用户 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1160. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1161. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '计划类型\n计划名称 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1162. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1163. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '现货品种\n套保品种', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1164. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1165. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '现货商品\n计划量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1166. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1167. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '套保品种变动量\n应套保总量变化量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1168. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1169. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '期限用途 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1170. -- 套保查询--参数调整
  1171. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgesearch_adjust', 3, '套保查询--参数调整', '', '手机端-套保查询--参数调整');
  1172. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1173. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '日期+时间 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1174. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1175. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '套保品种\n参数类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1176. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1177. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '调整前参数值\n调整后参数值', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1178. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1179. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '套保总量\n应套保总量变化量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1180. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1181. values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '调整前应套保总量\n调整后应套保总量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1182. -- *******************************************************************************合同查询****************************************************************************** --
  1183. -- 合同查询--点价记录
  1184. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_point', 3, '合同查询--点价记录', '', '手机端-合同查询--点价记录');
  1185. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1186. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1187. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1188. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1189. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1190. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1191. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1192. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '现货品牌\n点价价格 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1193. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1194. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '升贴水\n点价数量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1195. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1196. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '点价金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1197. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1198. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '审核人\n登记人 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1199. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1200. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '登记时间 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1201. -- 合同查询--交收记录
  1202. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_settle', 3, '合同查询--交收记录', '', '手机端-合同查询--交收记录');
  1203. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1204. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1205. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1206. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1207. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1208. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1209. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1210. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '现货品牌\n交手量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1211. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1212. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '其他费用\n调整保证金 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1213. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1214. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '调整金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1215. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1216. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '审核人\n登记人 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1217. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1218. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '登记时间 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1219. -- 合同查询--款项记录
  1220. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_payment', 3, '合同查询--款项记录', '', '手机端-合同查询--款项记录');
  1221. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1222. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1223. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1224. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1225. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1226. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1227. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1228. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '现货品牌\n款项类型 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1229. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1230. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '金额 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1231. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1232. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1233. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1234. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1235. -- 合同查询-- 发票记录
  1236. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_invoice', 3, '合同查询--发票记录', '', '手机端-合同查询--发票记录');
  1237. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1238. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1239. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1240. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1241. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1242. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1243. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1244. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '现货品牌\n发票类型 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1245. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1246. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '金额 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1247. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1248. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1249. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1250. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1251. -- 合同查询-- 入库记录
  1252. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_in', 3, '合同查询--入库记录', '', '手机端-合同查询--入库记录');
  1253. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1254. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1255. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1256. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1257. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1258. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1259. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1260. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '现货品牌\n仓库 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1261. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1262. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '入库类型\n入库数量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1263. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1264. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1265. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1266. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1267. -- 合同查询-- 出库记录
  1268. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_out', 3, '合同查询--出库记录', '', '手机端-合同查询--出库记录');
  1269. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1270. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1271. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1272. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1273. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1274. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1275. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1276. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '现货品牌\n仓库 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1277. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1278. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '出库类型\n出库数量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1279. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1280. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1281. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1282. values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1283. -- *******************************************************************************单据查询****************************************************************************** --
  1284. -- 单据查询--持仓单
  1285. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_position', 3, '单据查询--持仓单', '', '手机端-单据查询--持仓单');
  1286. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1287. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '所属机构\n用户名称 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1288. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1289. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '期货账户\n方向 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1290. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1291. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1292. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1293. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '今持仓\n总持仓 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1294. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1295. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '今仓可用\n总仓可用 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1296. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1297. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '开仓均价\n持仓均价 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1298. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1299. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '逐笔浮盈\n盯市浮盈 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1300. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1301. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '盈亏比例\n结算币种 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1302. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1303. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '交易所 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1304. -- 单据查询--委托单
  1305. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_order', 3, '单据查询--委托单', '', '手机端-单据查询--委托单');
  1306. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1307. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '日期+时间\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1308. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1309. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '用户名称\n期货账户 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1310. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1311. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1312. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1313. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '订单类型\n委托数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1314. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1315. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '成交数量\n委托价 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1316. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1317. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '冻结保证金\n订单类型 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1318. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1319. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '订单号\n结算币种 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1320. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1321. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '委托人\n撤单人 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1322. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1323. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '交易所 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1324. -- 单据查询--成交单
  1325. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_trade', 3, '单据查询--成交单', '', '手机端-单据查询--成交单');
  1326. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1327. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '日期+时间\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1328. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1329. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '用户名称\n期货账户 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1330. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1331. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1332. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1333. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '订单类型\n成交数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1334. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1335. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '成交价格\n手续费 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1336. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1337. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '平仓盈亏\n平仓盈亏(逐笔) ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1338. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1339. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '订单号\n委托人 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1340. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1341. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '结算币种\n交易所 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1342. -- 单据查询--外部委托单
  1343. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_outorder', 3, '单据查询--外部委托单', '', '手机端-单据查询--外部委托单');
  1344. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1345. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '日期+时间\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1346. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1347. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '外部期货账户\n订单类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1348. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1349. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1350. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1351. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '委托数量\n成交数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1352. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1353. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '委托价\n订单状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1354. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1355. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '外部订单号\n内部订单号 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1356. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1357. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '结算币种\n交易所 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1358. -- 单据查询--外部成交单
  1359. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_outtrade', 3, '单据查询--外部成交单', '', '手机端-单据查询--外部成交单');
  1360. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1361. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '日期+时间/\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1362. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1363. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '外部期货账户/\n订单类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1364. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1365. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '商品/\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1366. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1367. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '成交数量/\n成交价格 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1368. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1369. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '外部订单号/\n内部订单号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1370. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1371. values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '结算币种/\n交易所 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1372. -- *******************************************************************************资金信息****************************************************************************** --
  1373. --资金信息(个人)
  1374. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_account_person', 3, '资金信息-个人', '', '手机端-资金信息-个人');
  1375. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1376. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'currency', '币种', '0', 10, 1, 1, '', '', 'currency', 0, 0, '');
  1377. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1378. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'amountWorth', '当前权益', '0', 20, 1, 1, '', '', 'amountWorth', 0, 0, '');
  1379. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1380. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'availMargin', '可用金额', '0', 30, 1, 1, '', '', 'availMargin', 0, 0, '');
  1381. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1382. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'usedmargin', '占用金额', '0', 40, 1, 1, '', '', 'usedmargin', 0, 0, '');
  1383. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1384. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'freezeAmount', '冻结金额', '0', 50, 1, 1, '', '', 'freezeAmount', 0, 0, '');
  1385. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1386. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'holderDynProfit', '持仓盈亏', '0', 60, 1, 1, '', '', 'holderDynProfit', 0, 0, '');
  1387. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1388. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'closepl', '平仓盈亏', '0', 70, 1, 1, '', '', 'closepl', 0, 0, '');
  1389. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1390. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'totalAmount', '净资产', '0', 80, 1, 1, '', '', 'totalAmount', 0, 0, '');
  1391. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1392. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'totalMarketAmount', '总市值', '0', 90, 1, 1, '', '', 'totalMarketAmount', 0, 0, '');
  1393. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1394. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'currentbalance', '余额', '0', 100, 1, 1, '', '', 'currentbalance', 0, 0, '');
  1395. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1396. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'inamount', '入金', '0', 110, 1, 1, '', '', 'inamount', 0, 0, '');
  1397. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1398. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'outamount', '出金', '0', 120, 1, 1, '', '', 'outamount', 0, 0, '');
  1399. --资金信息(企业)
  1400. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_account_company', 3, '资金信息-企业', '', '手机端-资金信息-企业');
  1401. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1402. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'currency', '币种', '0', 10, 1, 1, '', '', 'currency', 0, 0, '');
  1403. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1404. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'amountWorth', '当前权益', '0', 20, 1, 1, '', '', 'amountWorth', 0, 0, '');
  1405. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1406. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'availMargin', '可用金额', '0', 30, 1, 1, '', '', 'availMargin', 0, 0, '');
  1407. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1408. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'usedmargin', '占用金额', '0', 40, 1, 1, '', '', 'usedmargin', 0, 0, '');
  1409. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1410. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'freezeAmount', '冻结金额', '0', 50, 1, 1, '', '', 'freezeAmount', 0, 0, '');
  1411. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1412. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'holderDynProfit', '持仓盈亏', '0', 60, 1, 1, '', '', 'holderDynProfit', 0, 0, '');
  1413. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1414. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'closepl', '平仓盈亏', '0', 70, 1, 1, '', '', 'closepl', 0, 0, '');
  1415. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1416. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'totalAmount', '净资产', '0', 80, 1, 1, '', '', 'totalAmount', 0, 0, '');
  1417. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1418. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'totalMarketAmount', '总市值', '0', 90, 1, 1, '', '', 'totalMarketAmount', 0, 0, '');
  1419. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1420. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'financedAmount', '融资额', '0', 100, 1, 1, '', '', 'financedAmount', 0, 0, '');
  1421. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1422. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'currentbalance', '余额', '0', 110, 1, 1, '', '', 'currentbalance', 0, 0, '');
  1423. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1424. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'inamount', '入金', '0', 120, 1, 1, '', '', 'inamount', 0, 0, '');
  1425. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1426. values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'outamount', '出金', '0', 130, 1, 1, '', '', 'outamount', 0, 0, '');
  1427. --------------------------------------------------------------------------------------------------------千海金--------------------------------------------------------------------------------------
  1428. -- 千海金-铂金宝
  1429. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_quote_bjb', 3, '千海金-铂金宝', '', '手机端-千海金-铂金宝');
  1430. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1431. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'goodsname', '商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1432. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1433. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'bid', '回购', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1434. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1435. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'ask', '销售', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1436. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1437. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '涨幅', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1438. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1439. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '涨跌', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1440. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1441. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '今开', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1442. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1443. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '最高', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1444. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1445. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '最低', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1446. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1447. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '昨收', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1448. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1449. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '时间', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1450. -- 千海金-饰品回收
  1451. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_quote_sphs', 3, '千海金-饰品回收', '', '手机端-千海金-饰品回收');
  1452. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1453. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'goodsname', '商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1454. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1455. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'userinfotype', '回收', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1456. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1457. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'userinfotype', '涨幅', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1458. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1459. values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'userinfotype', '涨跌', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1460. --------------------------------------------------------------------------------------------------------云融大宗--------------------------------------------------------------------------------------
  1461. -- 云融大宗-仓单贸易_一口价
  1462. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdmy_fixed', 3, '云融大宗-仓单贸易_一口价', '', '手机端-云融大宗-仓单贸易_一口价');
  1463. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1464. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1465. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1466. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1467. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1468. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1469. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1470. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1471. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1472. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1473. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1474. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '仓库', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1475. -- 云融大宗-仓单贸易_浮动价
  1476. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdmy_float', 3, '云融大宗-仓单贸易_浮动价', '', '手机端-云融大宗-仓单贸易_浮动价');
  1477. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1478. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1479. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1480. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '卖基差', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1481. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1482. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1483. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1484. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '买基差', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1485. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1486. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1487. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1488. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '期货合约', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1489. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1490. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '仓库', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1491. -- 云融大宗-仓单贸易-贸易圈
  1492. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_cdmy_myq', 3, '云融大宗-仓单贸易-贸易圈', '', '手机端-云融大宗-仓单贸易-贸易圈');
  1493. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1494. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1495. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1496. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '履约方式', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1497. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1498. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '价格', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1499. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1500. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1501. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1502. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '议价', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1503. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1504. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '整单', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1505. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1506. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '挂牌有效期', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1507. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1508. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '履约保证金', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1509. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1510. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '仓库', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1511. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1512. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '挂牌方', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1513. -- 云融大宗-仓单预售_一口价
  1514. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdys_fixed', 3, '云融大宗-仓单预售_一口价', '', '手机端-云融大宗-仓单预售_一口价');
  1515. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1516. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1517. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1518. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1519. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1520. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1521. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1522. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1523. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1524. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1525. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1526. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '仓库', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1527. -- 云融大宗-仓单预售_浮动价
  1528. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdys_float', 3, '云融大宗-仓单预售_浮动价', '', '手机端-云融大宗-仓单预售_浮动价');
  1529. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1530. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1531. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1532. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '卖基差', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1533. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1534. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1535. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1536. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '买基差', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1537. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1538. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1539. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1540. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '期货合约', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1541. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1542. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '仓库', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1543. -- 云融大宗-仓单预售-贸易圈
  1544. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_cdys_myq', 3, '云融大宗-仓单贸易-仓单预售-贸易圈', '', '手机端-云融大宗-仓单贸易-仓单预售-贸易圈');
  1545. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1546. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1547. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1548. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '履约方式', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1549. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1550. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '价格', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1551. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1552. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1553. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1554. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '议价', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1555. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1556. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '整单', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1557. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1558. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '交收月', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1559. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1560. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '挂牌有效期', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1561. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1562. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '履约保证金', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1563. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1564. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '仓库', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1565. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1566. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '挂牌方', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1567. -- 云融大宗-订单交易_挂牌转让
  1568. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_ddjy_gpzr', 3, '云融大宗-订单交易_挂牌转让', '', '手机端-云融大宗-订单交易_挂牌转让');
  1569. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1570. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'goodsname', '合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1571. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1572. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1573. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1574. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1575. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1576. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1577. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1578. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1579. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1580. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '最新价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1581. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1582. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '涨跌', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1583. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1584. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '幅度', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1585. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1586. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '今开', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1587. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1588. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '昨收', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1589. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1590. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '最低', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1591. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1592. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '最高', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1593. -- 云融大宗-订单交易_基差点价
  1594. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_ddjy_jcdj', 3, '云融大宗-订单交易_基差点价', '', '手机端-云融大宗-订单交易_基差点价');
  1595. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1596. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'goodsname', '合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1597. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1598. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1599. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1600. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1601. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1602. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1603. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1604. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1605. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1606. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '最新价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1607. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1608. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '涨跌', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1609. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1610. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '幅度', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1611. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1612. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '今开', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1613. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1614. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '昨收', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1615. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1616. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '最低', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1617. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1618. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '最高', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1619. -- 云融大宗-订单交易_商品掉期
  1620. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_ddjy_spdq', 3, '云融大宗-订单交易_商品掉期', '', '手机端-云融大宗-订单交易_商品掉期');
  1621. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1622. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'goodsname', '商品/标的', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1623. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1624. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '当前价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1625. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1626. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '涨跌', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1627. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1628. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '涨幅', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1629. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1630. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '振幅', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1631. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1632. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '开盘', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1633. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1634. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '最高', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1635. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1636. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '最低', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1637. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1638. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '结算', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1639. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1640. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '昨结算', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1641. -- 云融大宗-现货仓单_明细
  1642. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_mx', 3, '云融大宗-现货仓单_明细', '', '手机端-云融大宗-现货仓单_明细');
  1643. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1644. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'deliverygoodsname/\nwrtypename', '品种/商品', '0', 10, 1, 1, '', '', 'deliverygoodsname/\nwrtypename', 0, 0, '');
  1645. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1646. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'warehousename', '仓库', '0', 20, 1, 1, '', '', 'warehousename', 0, 0, '');
  1647. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1648. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'qty', '库存数量', '0', 30, 1, 1, '', '', 'qty', 0, 0, '');
  1649. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1650. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'freezerqty', '冻结数量', '0', 40, 1, 1, '', '', 'freezerqty', 0, 0, '');
  1651. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1652. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'pledgeqty', '质押数量', '0', 50, 1, 1, '', '', 'pledgeqty', 0, 0, '');
  1653. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1654. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'enableqty', '可用数量', '0', 60, 1, 1, '', '', 'enableqty', 0, 0, '');
  1655. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1656. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'wrholdeno', '仓单编号', '0', 70, 1, 1, '', '', 'wrholdeno', 0, 0, '');
  1657. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1658. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'createtime', '过户时间', '0', 80, 1, 1, '', '', 'createtime', 0, 0, '');
  1659. -- 云融大宗-现货仓单_挂单
  1660. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_gd', 3, '云融大宗-现货仓单_挂单', '', '手机端-云融大宗-现货仓单_挂单');
  1661. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1662. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'buyorsell', '品种/商品', '0', 10, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1663. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1664. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'buyorsell', '仓库', '0', 20, 1, 1, '', '', 'warehousename', 0, 0, '');
  1665. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1666. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'buyorsell', '挂牌类型', '0', 30, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1667. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1668. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'futushow', '挂牌方式', '0', 40, 1, 1, '', '', 'futushow', 0, 0, '');
  1669. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1670. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'futushow', '期货合约/基差', '0', 50, 1, 1, '', '', 'futushow', 0, 0, '');
  1671. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1672. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'fixedprice', '挂牌价格', '0', 60, 1, 1, '', '', 'fixedprice', 0, 0, '');
  1673. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1674. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'orderqty', '挂牌数量', '0', 70, 1, 1, '', '', 'orderqty', 0, 0, '');
  1675. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1676. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'tradeqty', '成交数量', '0', 80, 1, 1, '', '', 'tradeqty', 0, 0, '');
  1677. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1678. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'ordertime', '挂牌时间', '0', 90, 1, 1, '', '', 'ordertime', 0, 0, '');
  1679. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1680. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'wrtradeorderid', '挂牌单号', '0', 100, 1, 1, '', '', 'wrtradeorderid', 0, 0, '');
  1681. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1682. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'wrtradeorderstatus', '状态', '0', 110, 1, 1, '', '', 'wrtradeorderstatus', 0, 0, '');
  1683. -- 云融大宗-现货仓单_议价单
  1684. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_yjd', 3, '云融大宗-现货仓单_议价单', '', '手机端-云融大宗-现货仓单_议价单');
  1685. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1686. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '品种/商品', '0', 10, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1687. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1688. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌方', '0', 20, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1689. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1690. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '仓库', '0', 30, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1691. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1692. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌类型', '0', 40, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1693. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1694. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌价格', '0', 50, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1695. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1696. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌数量', '0', 60, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1697. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1698. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌有效期', '0', 70, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1699. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1700. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '履约保证金', '0', 80, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1701. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1702. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '履约方式', '0', 90, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1703. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1704. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价价格', '0', 100, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1705. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1706. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价数量', '0', 110, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1707. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1708. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价时间', '0', 120, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1709. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1710. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价状态', '0', 130, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1711. -- 云融大宗-现货仓单_成交
  1712. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_cj', 3, '云融大宗-现货仓单_成交', '', '手机端-云融大宗-现货仓单_成交');
  1713. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1714. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'deliverygoodsname/\nwrtypename', '品种/商品', '0', 10, 1, 1, '', '', 'deliverygoodsname/\nwrtypename', 0, 0, '');
  1715. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1716. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'warehousename', '仓库', '0', 20, 1, 1, '', '', 'warehousename', 0, 0, '');
  1717. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1718. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'buyorsell', '挂牌类型', '0', 30, 1, 1, '', '', 'buyorsell', 0, 0, '');
  1719. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1720. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradeprice', '成交价格', '0', 40, 1, 1, '', '', 'tradeprice', 0, 0, '');
  1721. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1722. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradeqty', '成交数量', '0', 50, 1, 1, '', '', 'tradeqty', 0, 0, '');
  1723. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1724. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradeprice*tradeqty', '成交金额', '0', 60, 1, 1, '', '', 'tradeprice*tradeqty', 0, 0, '');
  1725. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1726. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'matchusername', '手续费', '0', 70, 1, 1, '', '', 'matchusername', 0, 0, '');
  1727. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1728. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'matchusername', '对手方', '0', 80, 1, 1, '', '', 'matchusername', 0, 0, '');
  1729. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1730. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradetime', '成交时间', '0', 90, 1, 1, '', '', 'tradetime', 0, 0, '');
  1731. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1732. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'wrtradedetailid', '成交单号', '0', 100, 1, 1, '', '', 'wrtradedetailid', 0, 0, '');
  1733. -- 云融大宗-现货仓单_提货
  1734. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_crk', 3, '云融大宗-现货仓单_提货', '', '手机端-云融大宗-现货仓单_提货');
  1735. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1736. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1737. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1738. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1739. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1740. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1741. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1742. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '时间', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1743. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1744. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '物流信息', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1745. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1746. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '状态', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1747. -- 云融大宗-预售仓单_订单汇总
  1748. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_ddhz', 3, '云融大宗-预售仓单_订单汇总', '', '手机端-云融大宗-预售仓单_订单汇总');
  1749. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1750. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1751. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1752. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1753. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1754. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '预售数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1755. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1756. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '成交数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1757. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1758. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '冻结数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1759. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1760. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '可用数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1761. -- 云融大宗-预售仓单_挂单
  1762. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_gd', 3, '云融大宗-预售仓单_挂单', '', '手机端-云融大宗-预售仓单_挂单');
  1763. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1764. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1765. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1766. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1767. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1768. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '交收月', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1769. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1770. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌类型', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1771. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1772. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌方式', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1773. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1774. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '期货合约/基差', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1775. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1776. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌价格', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1777. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1778. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌数量', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1779. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1780. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '成交数量', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1781. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1782. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌时间', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1783. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1784. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1785. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1786. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '状态', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1787. -- 云融大宗-预售仓单_议价单
  1788. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_yjd', 3, '云融大宗-预售仓单_议价单', '', '手机端-云融大宗-预售仓单_议价单');
  1789. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1790. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1791. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1792. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌方', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1793. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1794. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1795. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1796. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌类型', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1797. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1798. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌价格', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1799. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1800. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1801. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1802. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌有效期', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1803. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1804. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '交收月', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1805. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1806. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '履约保证金', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1807. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1808. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '履约方式', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1809. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1810. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价价格', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1811. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1812. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价数量', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1813. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1814. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价时间', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1815. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1816. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价状态', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1817. -- 云融大宗-预售仓单_议价单_别人对我
  1818. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_yjd_me', 3, '云融大宗-预售仓单_议价单_别人对我', '', '手机端-云融大宗-预售仓单_议价单_别人对我');
  1819. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1820. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'goodsname', '议价人', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1821. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1822. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '数量', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1823. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1824. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '价格', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1825. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1826. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '时间', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1827. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1828. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '状态', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1829. -- 云融大宗-预售仓单_议价单_我对别人
  1830. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_yjd_he', 3, '云融大宗-预售仓单_议价单_我对别人', '', '手机端-云融大宗-预售仓单_议价单_我对别人');
  1831. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1832. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '数量', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1833. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1834. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '价格', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1835. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1836. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '时间', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1837. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1838. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1839. -- 云融大宗-预售仓单_成交
  1840. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_cj', 3, '云融大宗-预售仓单_成交', '', '手机端-云融大宗-预售仓单_成交');
  1841. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1842. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1843. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1844. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1845. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1846. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '交收月', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1847. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1848. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '挂牌类型', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1849. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1850. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交价格', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1851. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1852. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1853. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1854. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交金额', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1855. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1856. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'matchusername', '手续费', '0', 80, 1, 1, '', '', 'matchusername', 0, 0, '');
  1857. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1858. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'matchusername', '对手方', '0', 90, 1, 1, '', '', 'matchusername', 0, 0, '');
  1859. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1860. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交时间', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1861. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1862. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1863. -- 云融大宗-商品订单-订单汇总
  1864. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_hyhz', 3, '云融大宗-商品订单-订单汇总', '', '手机端-云融大宗-商品订单-订单汇总');
  1865. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1866. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1867. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1868. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '方向', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1869. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1870. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '持有数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1871. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1872. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '可用数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1873. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1874. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '冻结数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1875. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1876. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '持仓均价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1877. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1878. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '现价', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1879. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1880. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '持仓金额', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1881. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1882. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '市值', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1883. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1884. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '浮动盈亏', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1885. -- 云融大宗-合约订单-委托
  1886. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_wt', 3, '云融大宗-合约订单-委托', '', '手机端-云融大宗-合约订单-委托');
  1887. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1888. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1889. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1890. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '类型', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1891. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1892. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托价', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1893. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1894. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1895. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1896. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '成交数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1897. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1898. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托单号', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1899. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1900. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托时间', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1901. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1902. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '状态', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1903. -- 云融大宗-合约订单-协议单
  1904. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_xyd', 3, '云融大宗-合约订单-协议单', '', '手机端-云融大宗-合约订单-协议单');
  1905. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1906. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1907. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1908. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '方向', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1909. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1910. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '协议价', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1911. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1912. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1913. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1914. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '金额', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1915. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1916. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '状态', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1917. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1918. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '关联持仓', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1919. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1920. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '时间', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1921. -- 云融大宗-合约订单-成交
  1922. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_cj', 3, '云融大宗-合约订单-成交', '', '手机端-云融大宗-合约订单-成交');
  1923. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1924. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1925. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1926. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '类型', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1927. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1928. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交价', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1929. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1930. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1931. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1932. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交金额', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1933. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1934. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '手续费', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1935. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1936. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交单号', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1937. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1938. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交时间', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1939. -- 云融大宗-合约订单-交收
  1940. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_js', 3, '云融大宗-合约订单-交收', '', '手机端-云融大宗-合约订单-交收');
  1941. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1942. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1943. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1944. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '类型', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1945. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1946. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '合约数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1947. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1948. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '合约金额', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1949. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1950. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '点选数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1951. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1952. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '点选价格', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1953. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1954. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '点选货款', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1955. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1956. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '升贴水', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1957. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1958. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '交收金额', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1959. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1960. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '交收均价', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1961. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1962. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '交收申请时间', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1963. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1964. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '状态', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1965. -- 云融大宗-履约信息-买履约
  1966. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_lyxx_buy', 3, '云融大宗-履约信息-买履约', '', '手机端-云融大宗-履约信息-买履约');
  1967. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1968. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  1969. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1970. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1971. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1972. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1973. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1974. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '交收月', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1975. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1976. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '付款方式', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1977. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1978. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '履约前冻结', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1979. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1980. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '履约冻结剩余', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1981. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1982. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '总金额', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1983. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1984. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '已付金额', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1985. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1986. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '溢短金额', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1987. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1988. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '关联单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1989. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1990. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '卖方', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1991. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1992. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '履约状态', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1993. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1994. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '当前步骤', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1995. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  1996. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '开始时间', '0', 150, 1, 1, '', '', 'userinfotype', 0, 0, '');
  1997. -- 云融大宗-履约信息-卖履约
  1998. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_lyxx_sell', 3, '云融大宗-履约信息-卖履约', '', '手机端-云融大宗-履约信息-卖履约');
  1999. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2000. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  2001. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2002. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2003. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2004. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2005. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2006. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '交收月', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2007. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2008. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '付款方式', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2009. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2010. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '履约前冻结', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2011. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2012. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '履约冻结剩余', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2013. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2014. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '总金额', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2015. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2016. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '已付金额', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2017. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2018. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '溢短金额', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2019. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2020. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '关联单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2021. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2022. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '买方', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2023. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2024. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '履约状态', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2025. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2026. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '当前步骤', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2027. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2028. values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '开始时间', '0', 150, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2029. -- 云融大宗-融资管理-申请单
  2030. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_rzgl_sqd', 3, '云融大宗-融资管理-申请单', '', '手机端-云融大宗-融资管理-申请单');
  2031. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2032. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'goodsname', '类型/状态', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  2033. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2034. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '借款金额', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2035. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2036. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '购买商品', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2037. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2038. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '商品数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2039. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2040. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '借款天数', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2041. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2042. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '保证金', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2043. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2044. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '费用(日)', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2045. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2046. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '结息方式', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2047. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2048. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '最小计费天数', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2049. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2050. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '融出方', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2051. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2052. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '申请时间', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2053. -- 云融大宗-融资管理-合同
  2054. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_rzgl_ht', 3, '云融大宗-融资管理-合同', '', '手机端-云融大宗-融资管理-合同');
  2055. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2056. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'goodsname', '类型/状态', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  2057. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2058. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '借款金额', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2059. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2060. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '购买商品', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2061. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2062. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '商品数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2063. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2064. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '剩余金额', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2065. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2066. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '剩余数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2067. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2068. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '已回购数量', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2069. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2070. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '已结费用', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2071. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2072. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '未结费用', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2073. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2074. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '费用欠款', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2075. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2076. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '融出方', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2077. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2078. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '截止日期', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2079. -- 云融大宗-参考行情
  2080. insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_ckhq', 3, '云融大宗-参考行情', '', '手机端-云融大宗-参考行情');
  2081. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2082. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'goodsname', '合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
  2083. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2084. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2085. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2086. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2087. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2088. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2089. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2090. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2091. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2092. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '最新价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2093. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2094. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '涨跌', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2095. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2096. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '幅度', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2097. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2098. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '今开', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2099. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2100. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '昨收', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2101. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2102. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '最低', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2103. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2104. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '最高', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2105. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2106. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '振幅', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2107. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2108. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '总量', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2109. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2110. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '现量', '0', 150, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2111. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2112. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '持仓量', '0', 160, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2113. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2114. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '日增', '0', 170, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2115. insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
  2116. values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '金额', '0', 180, 1, 1, '', '', 'userinfotype', 0, 0, '');
  2117. commit;