ctpbee-opt-api 0.1.0__cp310-cp310-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (414) hide show
  1. ctpbee_api/__init__.py +17 -0
  2. ctpbee_api/ctp/__init__.py +3 -0
  3. ctpbee_api/ctp/ctp_constant.py +1253 -0
  4. ctpbee_api/ctp/generator/concat.py +93 -0
  5. ctpbee_api/ctp/generator/const.py +325 -0
  6. ctpbee_api/ctp/generator/ctp_constant.py +1274 -0
  7. ctpbee_api/ctp/generator/ctp_md_header_define.h +13 -0
  8. ctpbee_api/ctp/generator/ctp_md_header_function.h +6 -0
  9. ctpbee_api/ctp/generator/ctp_md_header_on.h +26 -0
  10. ctpbee_api/ctp/generator/ctp_md_header_process.h +26 -0
  11. ctpbee_api/ctp/generator/ctp_md_source_function.cpp +42 -0
  12. ctpbee_api/ctp/generator/ctp_md_source_module.cpp +18 -0
  13. ctpbee_api/ctp/generator/ctp_md_source_on.cpp +156 -0
  14. ctpbee_api/ctp/generator/ctp_md_source_process.cpp +282 -0
  15. ctpbee_api/ctp/generator/ctp_md_source_switch.cpp +78 -0
  16. ctpbee_api/ctp/generator/ctp_md_source_task.cpp +211 -0
  17. ctpbee_api/ctp/generator/ctp_struct.py +5640 -0
  18. ctpbee_api/ctp/generator/ctp_td_header_define.h +130 -0
  19. ctpbee_api/ctp/generator/ctp_td_header_function.h +174 -0
  20. ctpbee_api/ctp/generator/ctp_td_header_on.h +260 -0
  21. ctpbee_api/ctp/generator/ctp_td_header_process.h +260 -0
  22. ctpbee_api/ctp/generator/ctp_td_source_function.cpp +1456 -0
  23. ctpbee_api/ctp/generator/ctp_td_source_module.cpp +222 -0
  24. ctpbee_api/ctp/generator/ctp_td_source_on.cpp +1572 -0
  25. ctpbee_api/ctp/generator/ctp_td_source_process.cpp +5472 -0
  26. ctpbee_api/ctp/generator/ctp_td_source_switch.cpp +780 -0
  27. ctpbee_api/ctp/generator/ctp_td_source_task.cpp +2444 -0
  28. ctpbee_api/ctp/generator/ctp_typedef.py +800 -0
  29. ctpbee_api/ctp/generator/generate_api_functions.py +345 -0
  30. ctpbee_api/ctp/generator/generate_data_type.py +76 -0
  31. ctpbee_api/ctp/generator/generate_struct.py +84 -0
  32. ctpbee_api/ctp/include/mac/ctp/ThostFtdcMdApi.h +168 -0
  33. ctpbee_api/ctp/include/mac/ctp/ThostFtdcTraderApi.h +770 -0
  34. ctpbee_api/ctp/include/mac/ctp/ThostFtdcUserApiDataType.h +6878 -0
  35. ctpbee_api/ctp/include/mac/ctp/ThostFtdcUserApiStruct.h +10915 -0
  36. ctpbee_api/ctp/include/mac/pybind11/attr.h +690 -0
  37. ctpbee_api/ctp/include/mac/pybind11/buffer_info.h +208 -0
  38. ctpbee_api/ctp/include/mac/pybind11/cast.h +1704 -0
  39. ctpbee_api/ctp/include/mac/pybind11/chrono.h +225 -0
  40. ctpbee_api/ctp/include/mac/pybind11/common.h +2 -0
  41. ctpbee_api/ctp/include/mac/pybind11/complex.h +74 -0
  42. ctpbee_api/ctp/include/mac/pybind11/detail/class.h +743 -0
  43. ctpbee_api/ctp/include/mac/pybind11/detail/common.h +1255 -0
  44. ctpbee_api/ctp/include/mac/pybind11/detail/descr.h +171 -0
  45. ctpbee_api/ctp/include/mac/pybind11/detail/init.h +434 -0
  46. ctpbee_api/ctp/include/mac/pybind11/detail/internals.h +656 -0
  47. ctpbee_api/ctp/include/mac/pybind11/detail/type_caster_base.h +1177 -0
  48. ctpbee_api/ctp/include/mac/pybind11/detail/typeid.h +65 -0
  49. ctpbee_api/ctp/include/mac/pybind11/eigen/common.h +9 -0
  50. ctpbee_api/ctp/include/mac/pybind11/eigen/matrix.h +714 -0
  51. ctpbee_api/ctp/include/mac/pybind11/eigen/tensor.h +516 -0
  52. ctpbee_api/ctp/include/mac/pybind11/eigen.h +12 -0
  53. ctpbee_api/ctp/include/mac/pybind11/embed.h +316 -0
  54. ctpbee_api/ctp/include/mac/pybind11/eval.h +156 -0
  55. ctpbee_api/ctp/include/mac/pybind11/functional.h +137 -0
  56. ctpbee_api/ctp/include/mac/pybind11/gil.h +239 -0
  57. ctpbee_api/ctp/include/mac/pybind11/iostream.h +265 -0
  58. ctpbee_api/ctp/include/mac/pybind11/numpy.h +1998 -0
  59. ctpbee_api/ctp/include/mac/pybind11/operators.h +202 -0
  60. ctpbee_api/ctp/include/mac/pybind11/options.h +92 -0
  61. ctpbee_api/ctp/include/mac/pybind11/pybind11.h +2890 -0
  62. ctpbee_api/ctp/include/mac/pybind11/pytypes.h +2557 -0
  63. ctpbee_api/ctp/include/mac/pybind11/stl/filesystem.h +116 -0
  64. ctpbee_api/ctp/include/mac/pybind11/stl.h +447 -0
  65. ctpbee_api/ctp/include/mac/pybind11/stl_bind.h +851 -0
  66. ctpbee_api/ctp/include/mac/pybind11/type_caster_pyobject_ptr.h +61 -0
  67. ctpbee_api/ctp/include/new/ctp/ThostFtdcMdApi.h +168 -0
  68. ctpbee_api/ctp/include/new/ctp/ThostFtdcTraderApi.h +770 -0
  69. ctpbee_api/ctp/include/new/ctp/ThostFtdcUserApiDataType.h +6878 -0
  70. ctpbee_api/ctp/include/new/ctp/ThostFtdcUserApiStruct.h +10915 -0
  71. ctpbee_api/ctp/include/new/pybind11/attr.h +690 -0
  72. ctpbee_api/ctp/include/new/pybind11/buffer_info.h +208 -0
  73. ctpbee_api/ctp/include/new/pybind11/cast.h +1704 -0
  74. ctpbee_api/ctp/include/new/pybind11/chrono.h +225 -0
  75. ctpbee_api/ctp/include/new/pybind11/common.h +2 -0
  76. ctpbee_api/ctp/include/new/pybind11/complex.h +74 -0
  77. ctpbee_api/ctp/include/new/pybind11/detail/class.h +743 -0
  78. ctpbee_api/ctp/include/new/pybind11/detail/common.h +1255 -0
  79. ctpbee_api/ctp/include/new/pybind11/detail/descr.h +171 -0
  80. ctpbee_api/ctp/include/new/pybind11/detail/init.h +434 -0
  81. ctpbee_api/ctp/include/new/pybind11/detail/internals.h +656 -0
  82. ctpbee_api/ctp/include/new/pybind11/detail/type_caster_base.h +1177 -0
  83. ctpbee_api/ctp/include/new/pybind11/detail/typeid.h +65 -0
  84. ctpbee_api/ctp/include/new/pybind11/eigen/common.h +9 -0
  85. ctpbee_api/ctp/include/new/pybind11/eigen/matrix.h +714 -0
  86. ctpbee_api/ctp/include/new/pybind11/eigen/tensor.h +516 -0
  87. ctpbee_api/ctp/include/new/pybind11/eigen.h +12 -0
  88. ctpbee_api/ctp/include/new/pybind11/embed.h +316 -0
  89. ctpbee_api/ctp/include/new/pybind11/eval.h +156 -0
  90. ctpbee_api/ctp/include/new/pybind11/functional.h +137 -0
  91. ctpbee_api/ctp/include/new/pybind11/gil.h +239 -0
  92. ctpbee_api/ctp/include/new/pybind11/iostream.h +265 -0
  93. ctpbee_api/ctp/include/new/pybind11/numpy.h +1998 -0
  94. ctpbee_api/ctp/include/new/pybind11/operators.h +202 -0
  95. ctpbee_api/ctp/include/new/pybind11/options.h +92 -0
  96. ctpbee_api/ctp/include/new/pybind11/pybind11.h +2890 -0
  97. ctpbee_api/ctp/include/new/pybind11/pytypes.h +2557 -0
  98. ctpbee_api/ctp/include/new/pybind11/stl/filesystem.h +116 -0
  99. ctpbee_api/ctp/include/new/pybind11/stl.h +447 -0
  100. ctpbee_api/ctp/include/new/pybind11/stl_bind.h +851 -0
  101. ctpbee_api/ctp/include/new/pybind11/type_caster_pyobject_ptr.h +61 -0
  102. ctpbee_api/ctp/include/previous/ctp/ThostFtdcMdApi.h +168 -0
  103. ctpbee_api/ctp/include/previous/ctp/ThostFtdcTraderApi.h +770 -0
  104. ctpbee_api/ctp/include/previous/ctp/ThostFtdcUserApiDataType.h +6878 -0
  105. ctpbee_api/ctp/include/previous/ctp/ThostFtdcUserApiStruct.h +10915 -0
  106. ctpbee_api/ctp/include/previous/pybind11/attr.h +489 -0
  107. ctpbee_api/ctp/include/previous/pybind11/buffer_info.h +108 -0
  108. ctpbee_api/ctp/include/previous/pybind11/cast.h +2067 -0
  109. ctpbee_api/ctp/include/previous/pybind11/chrono.h +162 -0
  110. ctpbee_api/ctp/include/previous/pybind11/common.h +2 -0
  111. ctpbee_api/ctp/include/previous/pybind11/complex.h +61 -0
  112. ctpbee_api/ctp/include/previous/pybind11/detail/class.h +626 -0
  113. ctpbee_api/ctp/include/previous/pybind11/detail/common.h +803 -0
  114. ctpbee_api/ctp/include/previous/pybind11/detail/descr.h +185 -0
  115. ctpbee_api/ctp/include/previous/pybind11/detail/init.h +335 -0
  116. ctpbee_api/ctp/include/previous/pybind11/detail/internals.h +285 -0
  117. ctpbee_api/ctp/include/previous/pybind11/detail/typeid.h +53 -0
  118. ctpbee_api/ctp/include/previous/pybind11/eigen.h +604 -0
  119. ctpbee_api/ctp/include/previous/pybind11/embed.h +194 -0
  120. ctpbee_api/ctp/include/previous/pybind11/eval.h +117 -0
  121. ctpbee_api/ctp/include/previous/pybind11/functional.h +85 -0
  122. ctpbee_api/ctp/include/previous/pybind11/iostream.h +200 -0
  123. ctpbee_api/ctp/include/previous/pybind11/numpy.h +1601 -0
  124. ctpbee_api/ctp/include/previous/pybind11/operators.h +168 -0
  125. ctpbee_api/ctp/include/previous/pybind11/options.h +65 -0
  126. ctpbee_api/ctp/include/previous/pybind11/pybind11.h +1965 -0
  127. ctpbee_api/ctp/include/previous/pybind11/pytypes.h +1332 -0
  128. ctpbee_api/ctp/include/previous/pybind11/stl.h +376 -0
  129. ctpbee_api/ctp/include/previous/pybind11/stl_bind.h +599 -0
  130. ctpbee_api/ctp/libs/libcomunicationkey.a +0 -0
  131. ctpbee_api/ctp/libs/libcrypto.a +0 -0
  132. ctpbee_api/ctp/libs/libssl.a +0 -0
  133. ctpbee_api/ctp/libs/thostmduserapi_se.lib +0 -0
  134. ctpbee_api/ctp/libs/thosttraderapi_se.lib +0 -0
  135. ctpbee_api/ctp/libthostmduserapi_se.so +0 -0
  136. ctpbee_api/ctp/libthosttraderapi_se.so +0 -0
  137. ctpbee_api/ctp/thostmduserapi_se.dll +0 -0
  138. ctpbee_api/ctp/thosttraderapi_se.dll +0 -0
  139. ctpbee_api/ctp/vnctp/vnctp.h +189 -0
  140. ctpbee_api/ctp/vnctp/vnctp.sln +41 -0
  141. ctpbee_api/ctp/vnctp/vnctpmd/dllmain.cpp +19 -0
  142. ctpbee_api/ctp/vnctp/vnctpmd/stdafx.cpp +1 -0
  143. ctpbee_api/ctp/vnctp/vnctpmd/stdafx.h +17 -0
  144. ctpbee_api/ctp/vnctp/vnctpmd/targetver.h +8 -0
  145. ctpbee_api/ctp/vnctp/vnctpmd/vnctpmd.cpp +953 -0
  146. ctpbee_api/ctp/vnctp/vnctpmd/vnctpmd.h +209 -0
  147. ctpbee_api/ctp/vnctp/vnctpmd/vnctpmd.vcxproj +200 -0
  148. ctpbee_api/ctp/vnctp/vnctpmd/vnctpmd.vcxproj.filters +54 -0
  149. ctpbee_api/ctp/vnctp/vnctpmd/vnctpmd.vcxproj.user +4 -0
  150. ctpbee_api/ctp/vnctp/vnctptd/dllmain.cpp +19 -0
  151. ctpbee_api/ctp/vnctp/vnctptd/stdafx.cpp +1 -0
  152. ctpbee_api/ctp/vnctp/vnctptd/stdafx.h +16 -0
  153. ctpbee_api/ctp/vnctp/vnctptd/targetver.h +8 -0
  154. ctpbee_api/ctp/vnctp/vnctptd/vnctptd.cpp +12148 -0
  155. ctpbee_api/ctp/vnctp/vnctptd/vnctptd.h +1329 -0
  156. ctpbee_api/ctp/vnctp/vnctptd/vnctptd.vcxproj +198 -0
  157. ctpbee_api/ctp/vnctp/vnctptd/vnctptd.vcxproj.filters +54 -0
  158. ctpbee_api/ctp/vnctp/vnctptd/vnctptd.vcxproj.user +4 -0
  159. ctpbee_api/ctp/vnctpmd.cp310-win_amd64.pyd +0 -0
  160. ctpbee_api/ctp/vnctptd.cp310-win_amd64.pyd +0 -0
  161. ctpbee_api/ctp_mini/__init__.py +3 -0
  162. ctpbee_api/ctp_mini/generator/generate_api_functions.py +343 -0
  163. ctpbee_api/ctp_mini/generator/generate_data_type.py +76 -0
  164. ctpbee_api/ctp_mini/generator/generate_struct.py +85 -0
  165. ctpbee_api/ctp_mini/generator/mini_constant.py +1186 -0
  166. ctpbee_api/ctp_mini/generator/mini_md_header_define.h +13 -0
  167. ctpbee_api/ctp_mini/generator/mini_md_header_function.h +4 -0
  168. ctpbee_api/ctp_mini/generator/mini_md_header_on.h +26 -0
  169. ctpbee_api/ctp_mini/generator/mini_md_header_process.h +26 -0
  170. ctpbee_api/ctp_mini/generator/mini_md_source_function.cpp +29 -0
  171. ctpbee_api/ctp_mini/generator/mini_md_source_module.cpp +17 -0
  172. ctpbee_api/ctp_mini/generator/mini_md_source_on.cpp +156 -0
  173. ctpbee_api/ctp_mini/generator/mini_md_source_process.cpp +264 -0
  174. ctpbee_api/ctp_mini/generator/mini_md_source_switch.cpp +78 -0
  175. ctpbee_api/ctp_mini/generator/mini_md_source_task.cpp +203 -0
  176. ctpbee_api/ctp_mini/generator/mini_struct.py +4599 -0
  177. ctpbee_api/ctp_mini/generator/mini_td_header_define.h +63 -0
  178. ctpbee_api/ctp_mini/generator/mini_td_header_function.h +84 -0
  179. ctpbee_api/ctp_mini/generator/mini_td_header_on.h +126 -0
  180. ctpbee_api/ctp_mini/generator/mini_td_header_process.h +126 -0
  181. ctpbee_api/ctp_mini/generator/mini_td_source_function.cpp +663 -0
  182. ctpbee_api/ctp_mini/generator/mini_td_source_module.cpp +107 -0
  183. ctpbee_api/ctp_mini/generator/mini_td_source_on.cpp +756 -0
  184. ctpbee_api/ctp_mini/generator/mini_td_source_process.cpp +2492 -0
  185. ctpbee_api/ctp_mini/generator/mini_td_source_switch.cpp +378 -0
  186. ctpbee_api/ctp_mini/generator/mini_td_source_task.cpp +1193 -0
  187. ctpbee_api/ctp_mini/generator/mini_typedef.py +755 -0
  188. ctpbee_api/ctp_mini/generator/package/vnminimd.cpp +886 -0
  189. ctpbee_api/ctp_mini/generator/package/vnminimd.h +205 -0
  190. ctpbee_api/ctp_mini/include/new/mini/ThostFtdcMdApi.h +148 -0
  191. ctpbee_api/ctp_mini/include/new/mini/ThostFtdcTraderApi.h +419 -0
  192. ctpbee_api/ctp_mini/include/new/mini/ThostFtdcUserApiDataType.h +6458 -0
  193. ctpbee_api/ctp_mini/include/new/mini/ThostFtdcUserApiStruct.h +8890 -0
  194. ctpbee_api/ctp_mini/include/new/pybind11/attr.h +690 -0
  195. ctpbee_api/ctp_mini/include/new/pybind11/buffer_info.h +208 -0
  196. ctpbee_api/ctp_mini/include/new/pybind11/cast.h +1704 -0
  197. ctpbee_api/ctp_mini/include/new/pybind11/chrono.h +225 -0
  198. ctpbee_api/ctp_mini/include/new/pybind11/common.h +2 -0
  199. ctpbee_api/ctp_mini/include/new/pybind11/complex.h +74 -0
  200. ctpbee_api/ctp_mini/include/new/pybind11/detail/class.h +743 -0
  201. ctpbee_api/ctp_mini/include/new/pybind11/detail/common.h +1255 -0
  202. ctpbee_api/ctp_mini/include/new/pybind11/detail/descr.h +171 -0
  203. ctpbee_api/ctp_mini/include/new/pybind11/detail/init.h +434 -0
  204. ctpbee_api/ctp_mini/include/new/pybind11/detail/internals.h +656 -0
  205. ctpbee_api/ctp_mini/include/new/pybind11/detail/type_caster_base.h +1177 -0
  206. ctpbee_api/ctp_mini/include/new/pybind11/detail/typeid.h +65 -0
  207. ctpbee_api/ctp_mini/include/new/pybind11/eigen/common.h +9 -0
  208. ctpbee_api/ctp_mini/include/new/pybind11/eigen/matrix.h +714 -0
  209. ctpbee_api/ctp_mini/include/new/pybind11/eigen/tensor.h +516 -0
  210. ctpbee_api/ctp_mini/include/new/pybind11/eigen.h +12 -0
  211. ctpbee_api/ctp_mini/include/new/pybind11/embed.h +316 -0
  212. ctpbee_api/ctp_mini/include/new/pybind11/eval.h +156 -0
  213. ctpbee_api/ctp_mini/include/new/pybind11/functional.h +137 -0
  214. ctpbee_api/ctp_mini/include/new/pybind11/gil.h +239 -0
  215. ctpbee_api/ctp_mini/include/new/pybind11/iostream.h +265 -0
  216. ctpbee_api/ctp_mini/include/new/pybind11/numpy.h +1998 -0
  217. ctpbee_api/ctp_mini/include/new/pybind11/operators.h +202 -0
  218. ctpbee_api/ctp_mini/include/new/pybind11/options.h +92 -0
  219. ctpbee_api/ctp_mini/include/new/pybind11/pybind11.h +2890 -0
  220. ctpbee_api/ctp_mini/include/new/pybind11/pytypes.h +2557 -0
  221. ctpbee_api/ctp_mini/include/new/pybind11/stl/filesystem.h +116 -0
  222. ctpbee_api/ctp_mini/include/new/pybind11/stl.h +447 -0
  223. ctpbee_api/ctp_mini/include/new/pybind11/stl_bind.h +851 -0
  224. ctpbee_api/ctp_mini/include/new/pybind11/type_caster_pyobject_ptr.h +61 -0
  225. ctpbee_api/ctp_mini/include/previous/mini/ThostFtdcMdApi.h +148 -0
  226. ctpbee_api/ctp_mini/include/previous/mini/ThostFtdcTraderApi.h +419 -0
  227. ctpbee_api/ctp_mini/include/previous/mini/ThostFtdcUserApiDataType.h +6458 -0
  228. ctpbee_api/ctp_mini/include/previous/mini/ThostFtdcUserApiStruct.h +8890 -0
  229. ctpbee_api/ctp_mini/include/previous/pybind11/attr.h +489 -0
  230. ctpbee_api/ctp_mini/include/previous/pybind11/buffer_info.h +108 -0
  231. ctpbee_api/ctp_mini/include/previous/pybind11/cast.h +2067 -0
  232. ctpbee_api/ctp_mini/include/previous/pybind11/chrono.h +162 -0
  233. ctpbee_api/ctp_mini/include/previous/pybind11/common.h +2 -0
  234. ctpbee_api/ctp_mini/include/previous/pybind11/complex.h +61 -0
  235. ctpbee_api/ctp_mini/include/previous/pybind11/detail/class.h +626 -0
  236. ctpbee_api/ctp_mini/include/previous/pybind11/detail/common.h +803 -0
  237. ctpbee_api/ctp_mini/include/previous/pybind11/detail/descr.h +185 -0
  238. ctpbee_api/ctp_mini/include/previous/pybind11/detail/init.h +335 -0
  239. ctpbee_api/ctp_mini/include/previous/pybind11/detail/internals.h +285 -0
  240. ctpbee_api/ctp_mini/include/previous/pybind11/detail/typeid.h +53 -0
  241. ctpbee_api/ctp_mini/include/previous/pybind11/eigen.h +604 -0
  242. ctpbee_api/ctp_mini/include/previous/pybind11/embed.h +194 -0
  243. ctpbee_api/ctp_mini/include/previous/pybind11/eval.h +117 -0
  244. ctpbee_api/ctp_mini/include/previous/pybind11/functional.h +85 -0
  245. ctpbee_api/ctp_mini/include/previous/pybind11/iostream.h +200 -0
  246. ctpbee_api/ctp_mini/include/previous/pybind11/numpy.h +1601 -0
  247. ctpbee_api/ctp_mini/include/previous/pybind11/operators.h +168 -0
  248. ctpbee_api/ctp_mini/include/previous/pybind11/options.h +65 -0
  249. ctpbee_api/ctp_mini/include/previous/pybind11/pybind11.h +1965 -0
  250. ctpbee_api/ctp_mini/include/previous/pybind11/pytypes.h +1332 -0
  251. ctpbee_api/ctp_mini/include/previous/pybind11/stl.h +376 -0
  252. ctpbee_api/ctp_mini/include/previous/pybind11/stl_bind.h +599 -0
  253. ctpbee_api/ctp_mini/libs/thostmduserapi.lib +0 -0
  254. ctpbee_api/ctp_mini/libs/thosttraderapi.lib +0 -0
  255. ctpbee_api/ctp_mini/libthostmduserapi.so +0 -0
  256. ctpbee_api/ctp_mini/libthosttraderapi.so +0 -0
  257. ctpbee_api/ctp_mini/mini_constant.py +1186 -0
  258. ctpbee_api/ctp_mini/thostmduserapi.dll +0 -0
  259. ctpbee_api/ctp_mini/thosttraderapi.dll +0 -0
  260. ctpbee_api/ctp_mini/vnctp_mini/vnctp_mini.h +146 -0
  261. ctpbee_api/ctp_mini/vnctp_mini/vnctp_mini.sln +41 -0
  262. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/dllmain.cpp +0 -0
  263. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/stdafx.cpp +0 -0
  264. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/stdafx.h +0 -0
  265. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/targetver.h +0 -0
  266. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/vnctp_minimd.cpp +886 -0
  267. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/vnctp_minimd.h +203 -0
  268. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/vnctp_minimd.vcxproj +183 -0
  269. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/vnctp_minimd.vcxproj.filters +54 -0
  270. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/vnctp_minimd.vcxproj.user +4 -0
  271. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/dllmain.cpp +0 -0
  272. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/stdafx.cpp +0 -0
  273. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/stdafx.h +0 -0
  274. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/targetver.h +0 -0
  275. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/vnctp_minitd.cpp +5716 -0
  276. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/vnctp_minitd.h +680 -0
  277. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/vnctp_minitd.vcxproj +180 -0
  278. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/vnctp_minitd.vcxproj.filters +54 -0
  279. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/vnctp_minitd.vcxproj.user +4 -0
  280. ctpbee_api/ctp_mini/vnctp_minimd.cp310-win_amd64.pyd +0 -0
  281. ctpbee_api/ctp_mini/vnctp_minitd.cp310-win_amd64.pyd +0 -0
  282. ctpbee_api/ctp_mini/vnctp_minitd.lib +0 -0
  283. ctpbee_api/rohon/RohonBaseV64.dll +0 -0
  284. ctpbee_api/rohon/WinDataCollect.dll +0 -0
  285. ctpbee_api/rohon/__init__.py +3 -0
  286. ctpbee_api/rohon/generator/generate_api_functions.py +348 -0
  287. ctpbee_api/rohon/generator/generate_data_type.py +76 -0
  288. ctpbee_api/rohon/generator/generate_struct.py +84 -0
  289. ctpbee_api/rohon/generator/rohon_constant.py +1242 -0
  290. ctpbee_api/rohon/generator/rohon_md_header_define.h +13 -0
  291. ctpbee_api/rohon/generator/rohon_md_header_function.h +6 -0
  292. ctpbee_api/rohon/generator/rohon_md_header_on.h +26 -0
  293. ctpbee_api/rohon/generator/rohon_md_header_process.h +26 -0
  294. ctpbee_api/rohon/generator/rohon_md_source_function.cpp +40 -0
  295. ctpbee_api/rohon/generator/rohon_md_source_module.cpp +18 -0
  296. ctpbee_api/rohon/generator/rohon_md_source_on.cpp +156 -0
  297. ctpbee_api/rohon/generator/rohon_md_source_process.cpp +271 -0
  298. ctpbee_api/rohon/generator/rohon_md_source_switch.cpp +78 -0
  299. ctpbee_api/rohon/generator/rohon_md_source_task.cpp +211 -0
  300. ctpbee_api/rohon/generator/rohon_struct.py +4958 -0
  301. ctpbee_api/rohon/generator/rohon_td_header_define.h +125 -0
  302. ctpbee_api/rohon/generator/rohon_td_header_function.h +164 -0
  303. ctpbee_api/rohon/generator/rohon_td_header_on.h +250 -0
  304. ctpbee_api/rohon/generator/rohon_td_header_process.h +250 -0
  305. ctpbee_api/rohon/generator/rohon_td_source_function.cpp +1338 -0
  306. ctpbee_api/rohon/generator/rohon_td_source_module.cpp +209 -0
  307. ctpbee_api/rohon/generator/rohon_td_source_on.cpp +1500 -0
  308. ctpbee_api/rohon/generator/rohon_td_source_process.cpp +5125 -0
  309. ctpbee_api/rohon/generator/rohon_td_source_switch.cpp +750 -0
  310. ctpbee_api/rohon/generator/rohon_td_source_task.cpp +2339 -0
  311. ctpbee_api/rohon/generator/rohon_typedef.py +781 -0
  312. ctpbee_api/rohon/include/new/pybind11/attr.h +690 -0
  313. ctpbee_api/rohon/include/new/pybind11/buffer_info.h +208 -0
  314. ctpbee_api/rohon/include/new/pybind11/cast.h +1704 -0
  315. ctpbee_api/rohon/include/new/pybind11/chrono.h +225 -0
  316. ctpbee_api/rohon/include/new/pybind11/common.h +2 -0
  317. ctpbee_api/rohon/include/new/pybind11/complex.h +74 -0
  318. ctpbee_api/rohon/include/new/pybind11/detail/class.h +743 -0
  319. ctpbee_api/rohon/include/new/pybind11/detail/common.h +1255 -0
  320. ctpbee_api/rohon/include/new/pybind11/detail/descr.h +171 -0
  321. ctpbee_api/rohon/include/new/pybind11/detail/init.h +434 -0
  322. ctpbee_api/rohon/include/new/pybind11/detail/internals.h +656 -0
  323. ctpbee_api/rohon/include/new/pybind11/detail/type_caster_base.h +1177 -0
  324. ctpbee_api/rohon/include/new/pybind11/detail/typeid.h +65 -0
  325. ctpbee_api/rohon/include/new/pybind11/eigen/common.h +9 -0
  326. ctpbee_api/rohon/include/new/pybind11/eigen/matrix.h +714 -0
  327. ctpbee_api/rohon/include/new/pybind11/eigen/tensor.h +516 -0
  328. ctpbee_api/rohon/include/new/pybind11/eigen.h +12 -0
  329. ctpbee_api/rohon/include/new/pybind11/embed.h +316 -0
  330. ctpbee_api/rohon/include/new/pybind11/eval.h +156 -0
  331. ctpbee_api/rohon/include/new/pybind11/functional.h +137 -0
  332. ctpbee_api/rohon/include/new/pybind11/gil.h +239 -0
  333. ctpbee_api/rohon/include/new/pybind11/iostream.h +265 -0
  334. ctpbee_api/rohon/include/new/pybind11/numpy.h +1998 -0
  335. ctpbee_api/rohon/include/new/pybind11/operators.h +202 -0
  336. ctpbee_api/rohon/include/new/pybind11/options.h +92 -0
  337. ctpbee_api/rohon/include/new/pybind11/pybind11.h +2890 -0
  338. ctpbee_api/rohon/include/new/pybind11/pytypes.h +2557 -0
  339. ctpbee_api/rohon/include/new/pybind11/stl/filesystem.h +116 -0
  340. ctpbee_api/rohon/include/new/pybind11/stl.h +447 -0
  341. ctpbee_api/rohon/include/new/pybind11/stl_bind.h +851 -0
  342. ctpbee_api/rohon/include/new/pybind11/type_caster_pyobject_ptr.h +61 -0
  343. ctpbee_api/rohon/include/new/rohon/ThostFtdcMdApi.h +168 -0
  344. ctpbee_api/rohon/include/new/rohon/ThostFtdcTraderApi.h +739 -0
  345. ctpbee_api/rohon/include/new/rohon/ThostFtdcUserApiDataType.h +6708 -0
  346. ctpbee_api/rohon/include/new/rohon/ThostFtdcUserApiStruct.h +9580 -0
  347. ctpbee_api/rohon/include/previous/pybind11/attr.h +489 -0
  348. ctpbee_api/rohon/include/previous/pybind11/buffer_info.h +108 -0
  349. ctpbee_api/rohon/include/previous/pybind11/cast.h +2067 -0
  350. ctpbee_api/rohon/include/previous/pybind11/chrono.h +162 -0
  351. ctpbee_api/rohon/include/previous/pybind11/common.h +2 -0
  352. ctpbee_api/rohon/include/previous/pybind11/complex.h +61 -0
  353. ctpbee_api/rohon/include/previous/pybind11/detail/class.h +626 -0
  354. ctpbee_api/rohon/include/previous/pybind11/detail/common.h +803 -0
  355. ctpbee_api/rohon/include/previous/pybind11/detail/descr.h +185 -0
  356. ctpbee_api/rohon/include/previous/pybind11/detail/init.h +335 -0
  357. ctpbee_api/rohon/include/previous/pybind11/detail/internals.h +285 -0
  358. ctpbee_api/rohon/include/previous/pybind11/detail/typeid.h +53 -0
  359. ctpbee_api/rohon/include/previous/pybind11/eigen.h +604 -0
  360. ctpbee_api/rohon/include/previous/pybind11/embed.h +194 -0
  361. ctpbee_api/rohon/include/previous/pybind11/eval.h +117 -0
  362. ctpbee_api/rohon/include/previous/pybind11/functional.h +85 -0
  363. ctpbee_api/rohon/include/previous/pybind11/iostream.h +200 -0
  364. ctpbee_api/rohon/include/previous/pybind11/numpy.h +1601 -0
  365. ctpbee_api/rohon/include/previous/pybind11/operators.h +168 -0
  366. ctpbee_api/rohon/include/previous/pybind11/options.h +65 -0
  367. ctpbee_api/rohon/include/previous/pybind11/pybind11.h +1965 -0
  368. ctpbee_api/rohon/include/previous/pybind11/pytypes.h +1332 -0
  369. ctpbee_api/rohon/include/previous/pybind11/stl.h +376 -0
  370. ctpbee_api/rohon/include/previous/pybind11/stl_bind.h +599 -0
  371. ctpbee_api/rohon/include/previous/rohon/ThostFtdcMdApi.h +168 -0
  372. ctpbee_api/rohon/include/previous/rohon/ThostFtdcTraderApi.h +739 -0
  373. ctpbee_api/rohon/include/previous/rohon/ThostFtdcUserApiDataType.h +6708 -0
  374. ctpbee_api/rohon/include/previous/rohon/ThostFtdcUserApiStruct.h +9580 -0
  375. ctpbee_api/rohon/libLinuxDataCollect.so +0 -0
  376. ctpbee_api/rohon/librohonbase.so +0 -0
  377. ctpbee_api/rohon/librohonbase.so.1.1 +0 -0
  378. ctpbee_api/rohon/librohonbase.so.1.1.0.1 +0 -0
  379. ctpbee_api/rohon/libs/thostmduserapi_se.lib +0 -0
  380. ctpbee_api/rohon/libs/thosttraderapi_se.lib +0 -0
  381. ctpbee_api/rohon/libthostmduserapi_se.so +0 -0
  382. ctpbee_api/rohon/libthosttraderapi_se.so +0 -0
  383. ctpbee_api/rohon/rohon_constant.py +1242 -0
  384. ctpbee_api/rohon/thostmduserapi_se.dll +0 -0
  385. ctpbee_api/rohon/thosttraderapi_se.dll +0 -0
  386. ctpbee_api/rohon/vnrohon/.vs/vnrohon/v15/.suo +0 -0
  387. ctpbee_api/rohon/vnrohon/.vs/vnrohon/v15/Browse.VC.db +0 -0
  388. ctpbee_api/rohon/vnrohon/.vs/vnrohon/v15/Solution.VC.db +0 -0
  389. ctpbee_api/rohon/vnrohon/vnrohon.h +147 -0
  390. ctpbee_api/rohon/vnrohon/vnrohon.sln +41 -0
  391. ctpbee_api/rohon/vnrohon/vnrohonmd/dllmain.cpp +19 -0
  392. ctpbee_api/rohon/vnrohon/vnrohonmd/framework.h +5 -0
  393. ctpbee_api/rohon/vnrohon/vnrohonmd/pch.cpp +5 -0
  394. ctpbee_api/rohon/vnrohon/vnrohonmd/pch.h +13 -0
  395. ctpbee_api/rohon/vnrohon/vnrohonmd/vnrohonmd.cpp +931 -0
  396. ctpbee_api/rohon/vnrohon/vnrohonmd/vnrohonmd.h +207 -0
  397. ctpbee_api/rohon/vnrohon/vnrohonmd/vnrohonmd.vcxproj +188 -0
  398. ctpbee_api/rohon/vnrohon/vnrohonmd/vnrohonmd.vcxproj.filters +54 -0
  399. ctpbee_api/rohon/vnrohon/vnrohonmd/vnrohonmd.vcxproj.user +4 -0
  400. ctpbee_api/rohon/vnrohon/vnrohontd/dllmain.cpp +19 -0
  401. ctpbee_api/rohon/vnrohon/vnrohontd/framework.h +5 -0
  402. ctpbee_api/rohon/vnrohon/vnrohontd/pch.cpp +5 -0
  403. ctpbee_api/rohon/vnrohon/vnrohontd/pch.h +13 -0
  404. ctpbee_api/rohon/vnrohon/vnrohontd/vnrohontd.cpp +11395 -0
  405. ctpbee_api/rohon/vnrohon/vnrohontd/vnrohontd.h +1259 -0
  406. ctpbee_api/rohon/vnrohon/vnrohontd/vnrohontd.vcxproj +188 -0
  407. ctpbee_api/rohon/vnrohon/vnrohontd/vnrohontd.vcxproj.filters +54 -0
  408. ctpbee_api/rohon/vnrohon/vnrohontd/vnrohontd.vcxproj.user +4 -0
  409. ctpbee_api/rohon/vnrohonmd.cp310-win_amd64.pyd +0 -0
  410. ctpbee_api/rohon/vnrohontd.cp310-win_amd64.pyd +0 -0
  411. ctpbee_opt_api-0.1.0.dist-info/METADATA +46 -0
  412. ctpbee_opt_api-0.1.0.dist-info/RECORD +414 -0
  413. ctpbee_opt_api-0.1.0.dist-info/WHEEL +5 -0
  414. ctpbee_opt_api-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,781 @@
1
+ TThostFtdcTraderIDType = "string"
2
+ TThostFtdcInvestorIDType = "string"
3
+ TThostFtdcBrokerIDType = "string"
4
+ TThostFtdcBrokerAbbrType = "string"
5
+ TThostFtdcBrokerNameType = "string"
6
+ TThostFtdcExchangeInstIDType = "string"
7
+ TThostFtdcOrderRefType = "string"
8
+ TThostFtdcParticipantIDType = "string"
9
+ TThostFtdcUserIDType = "string"
10
+ TThostFtdcPasswordType = "string"
11
+ TThostFtdcClientIDType = "string"
12
+ TThostFtdcInstrumentIDType = "string"
13
+ TThostFtdcInstrumentCodeType = "string"
14
+ TThostFtdcMarketIDType = "string"
15
+ TThostFtdcProductNameType = "string"
16
+ TThostFtdcExchangeIDType = "string"
17
+ TThostFtdcExchangeNameType = "string"
18
+ TThostFtdcExchangeAbbrType = "string"
19
+ TThostFtdcExchangeFlagType = "string"
20
+ TThostFtdcMacAddressType = "string"
21
+ TThostFtdcSystemIDType = "string"
22
+ TThostFtdcExchangePropertyType = "char"
23
+ TThostFtdcDateType = "string"
24
+ TThostFtdcTimeType = "string"
25
+ TThostFtdcLongTimeType = "string"
26
+ TThostFtdcInstrumentNameType = "string"
27
+ TThostFtdcSettlementGroupIDType = "string"
28
+ TThostFtdcOrderSysIDType = "string"
29
+ TThostFtdcTradeIDType = "string"
30
+ TThostFtdcCommandTypeType = "string"
31
+ TThostFtdcIPAddressType = "string"
32
+ TThostFtdcIPPortType = "int"
33
+ TThostFtdcProductInfoType = "string"
34
+ TThostFtdcProtocolInfoType = "string"
35
+ TThostFtdcBusinessUnitType = "string"
36
+ TThostFtdcDepositSeqNoType = "string"
37
+ TThostFtdcIdentifiedCardNoType = "string"
38
+ TThostFtdcIdCardTypeType = "char"
39
+ TThostFtdcOrderLocalIDType = "string"
40
+ TThostFtdcUserNameType = "string"
41
+ TThostFtdcPartyNameType = "string"
42
+ TThostFtdcErrorMsgType = "string"
43
+ TThostFtdcFieldNameType = "string"
44
+ TThostFtdcFieldContentType = "string"
45
+ TThostFtdcSystemNameType = "string"
46
+ TThostFtdcContentType = "string"
47
+ TThostFtdcInvestorRangeType = "char"
48
+ TThostFtdcDepartmentRangeType = "char"
49
+ TThostFtdcDataSyncStatusType = "char"
50
+ TThostFtdcBrokerDataSyncStatusType = "char"
51
+ TThostFtdcExchangeConnectStatusType = "char"
52
+ TThostFtdcTraderConnectStatusType = "char"
53
+ TThostFtdcFunctionCodeType = "char"
54
+ TThostFtdcBrokerFunctionCodeType = "char"
55
+ TThostFtdcOrderActionStatusType = "char"
56
+ TThostFtdcOrderStatusType = "char"
57
+ TThostFtdcOrderSubmitStatusType = "char"
58
+ TThostFtdcPositionDateType = "char"
59
+ TThostFtdcPositionDateTypeType = "char"
60
+ TThostFtdcTradingRoleType = "char"
61
+ TThostFtdcProductClassType = "char"
62
+ TThostFtdcAPIProductClassType = "char"
63
+ TThostFtdcInstLifePhaseType = "char"
64
+ TThostFtdcDirectionType = "char"
65
+ TThostFtdcPositionTypeType = "char"
66
+ TThostFtdcPosiDirectionType = "char"
67
+ TThostFtdcSysSettlementStatusType = "char"
68
+ TThostFtdcRatioAttrType = "char"
69
+ TThostFtdcHedgeFlagType = "char"
70
+ TThostFtdcBillHedgeFlagType = "char"
71
+ TThostFtdcClientIDTypeType = "char"
72
+ TThostFtdcOrderPriceTypeType = "char"
73
+ TThostFtdcOffsetFlagType = "char"
74
+ TThostFtdcForceCloseReasonType = "char"
75
+ TThostFtdcOrderTypeType = "char"
76
+ TThostFtdcTimeConditionType = "char"
77
+ TThostFtdcVolumeConditionType = "char"
78
+ TThostFtdcContingentConditionType = "char"
79
+ TThostFtdcActionFlagType = "char"
80
+ TThostFtdcTradingRightType = "char"
81
+ TThostFtdcOrderSourceType = "char"
82
+ TThostFtdcTradeTypeType = "char"
83
+ TThostFtdcSpecPosiTypeType = "char"
84
+ TThostFtdcPriceSourceType = "char"
85
+ TThostFtdcInstrumentStatusType = "char"
86
+ TThostFtdcInstStatusEnterReasonType = "char"
87
+ TThostFtdcOrderActionRefType = "int"
88
+ TThostFtdcInstallCountType = "int"
89
+ TThostFtdcInstallIDType = "int"
90
+ TThostFtdcErrorIDType = "int"
91
+ TThostFtdcSettlementIDType = "int"
92
+ TThostFtdcVolumeType = "int"
93
+ TThostFtdcFrontIDType = "int"
94
+ TThostFtdcSessionIDType = "int"
95
+ TThostFtdcSequenceNoType = "int"
96
+ TThostFtdcCommandNoType = "int"
97
+ TThostFtdcMillisecType = "int"
98
+ TThostFtdcVolumeMultipleType = "int"
99
+ TThostFtdcTradingSegmentSNType = "int"
100
+ TThostFtdcRequestIDType = "int"
101
+ TThostFtdcYearType = "int"
102
+ TThostFtdcMonthType = "int"
103
+ TThostFtdcBoolType = "int"
104
+ TThostFtdcPriceType = "double"
105
+ TThostFtdcCombOffsetFlagType = "string"
106
+ TThostFtdcCombHedgeFlagType = "string"
107
+ TThostFtdcRatioType = "double"
108
+ TThostFtdcMoneyType = "double"
109
+ TThostFtdcLargeVolumeType = "double"
110
+ TThostFtdcSequenceSeriesType = "int"
111
+ TThostFtdcCommPhaseNoType = "int"
112
+ TThostFtdcSequenceLabelType = "string"
113
+ TThostFtdcUnderlyingMultipleType = "double"
114
+ TThostFtdcPriorityType = "int"
115
+ TThostFtdcContractCodeType = "string"
116
+ TThostFtdcCityType = "string"
117
+ TThostFtdcIsStockType = "string"
118
+ TThostFtdcChannelType = "string"
119
+ TThostFtdcAddressType = "string"
120
+ TThostFtdcZipCodeType = "string"
121
+ TThostFtdcTelephoneType = "string"
122
+ TThostFtdcFaxType = "string"
123
+ TThostFtdcMobileType = "string"
124
+ TThostFtdcEMailType = "string"
125
+ TThostFtdcMemoType = "string"
126
+ TThostFtdcCompanyCodeType = "string"
127
+ TThostFtdcWebsiteType = "string"
128
+ TThostFtdcTaxNoType = "string"
129
+ TThostFtdcBatchStatusType = "char"
130
+ TThostFtdcPropertyIDType = "string"
131
+ TThostFtdcPropertyNameType = "string"
132
+ TThostFtdcLicenseNoType = "string"
133
+ TThostFtdcAgentIDType = "string"
134
+ TThostFtdcAgentNameType = "string"
135
+ TThostFtdcAgentGroupIDType = "string"
136
+ TThostFtdcAgentGroupNameType = "string"
137
+ TThostFtdcReturnStyleType = "char"
138
+ TThostFtdcReturnPatternType = "char"
139
+ TThostFtdcReturnLevelType = "char"
140
+ TThostFtdcReturnStandardType = "char"
141
+ TThostFtdcMortgageTypeType = "char"
142
+ TThostFtdcInvestorSettlementParamIDType = "char"
143
+ TThostFtdcExchangeSettlementParamIDType = "char"
144
+ TThostFtdcSystemParamIDType = "char"
145
+ TThostFtdcTradeParamIDType = "char"
146
+ TThostFtdcSettlementParamValueType = "string"
147
+ TThostFtdcCounterIDType = "string"
148
+ TThostFtdcInvestorGroupNameType = "string"
149
+ TThostFtdcBrandCodeType = "string"
150
+ TThostFtdcWarehouseType = "string"
151
+ TThostFtdcProductDateType = "string"
152
+ TThostFtdcGradeType = "string"
153
+ TThostFtdcClassifyType = "string"
154
+ TThostFtdcPositionType = "string"
155
+ TThostFtdcYieldlyType = "string"
156
+ TThostFtdcWeightType = "string"
157
+ TThostFtdcSubEntryFundNoType = "int"
158
+ TThostFtdcFileIDType = "char"
159
+ TThostFtdcFileNameType = "string"
160
+ TThostFtdcFileTypeType = "char"
161
+ TThostFtdcFileFormatType = "char"
162
+ TThostFtdcFileUploadStatusType = "char"
163
+ TThostFtdcTransferDirectionType = "char"
164
+ TThostFtdcUploadModeType = "string"
165
+ TThostFtdcAccountIDType = "string"
166
+ TThostFtdcBankFlagType = "string"
167
+ TThostFtdcBankAccountType = "string"
168
+ TThostFtdcOpenNameType = "string"
169
+ TThostFtdcOpenBankType = "string"
170
+ TThostFtdcBankNameType = "string"
171
+ TThostFtdcPublishPathType = "string"
172
+ TThostFtdcOperatorIDType = "string"
173
+ TThostFtdcMonthCountType = "int"
174
+ TThostFtdcAdvanceMonthArrayType = "string"
175
+ TThostFtdcDateExprType = "string"
176
+ TThostFtdcInstrumentIDExprType = "string"
177
+ TThostFtdcInstrumentNameExprType = "string"
178
+ TThostFtdcSpecialCreateRuleType = "char"
179
+ TThostFtdcBasisPriceTypeType = "char"
180
+ TThostFtdcProductLifePhaseType = "char"
181
+ TThostFtdcDeliveryModeType = "char"
182
+ TThostFtdcLogLevelType = "string"
183
+ TThostFtdcProcessNameType = "string"
184
+ TThostFtdcOperationMemoType = "string"
185
+ TThostFtdcFundIOTypeType = "char"
186
+ TThostFtdcFundTypeType = "char"
187
+ TThostFtdcFundDirectionType = "char"
188
+ TThostFtdcFundStatusType = "char"
189
+ TThostFtdcBillNoType = "string"
190
+ TThostFtdcBillNameType = "string"
191
+ TThostFtdcPublishStatusType = "char"
192
+ TThostFtdcEnumValueIDType = "string"
193
+ TThostFtdcEnumValueTypeType = "string"
194
+ TThostFtdcEnumValueLabelType = "string"
195
+ TThostFtdcEnumValueResultType = "string"
196
+ TThostFtdcSystemStatusType = "char"
197
+ TThostFtdcSettlementStatusType = "char"
198
+ TThostFtdcRangeIntTypeType = "string"
199
+ TThostFtdcRangeIntFromType = "string"
200
+ TThostFtdcRangeIntToType = "string"
201
+ TThostFtdcFunctionIDType = "string"
202
+ TThostFtdcFunctionValueCodeType = "string"
203
+ TThostFtdcFunctionNameType = "string"
204
+ TThostFtdcRoleIDType = "string"
205
+ TThostFtdcRoleNameType = "string"
206
+ TThostFtdcDescriptionType = "string"
207
+ TThostFtdcCombineIDType = "string"
208
+ TThostFtdcCombineTypeType = "string"
209
+ TThostFtdcInvestorTypeType = "char"
210
+ TThostFtdcBrokerTypeType = "char"
211
+ TThostFtdcRiskLevelType = "char"
212
+ TThostFtdcFeeAcceptStyleType = "char"
213
+ TThostFtdcPasswordTypeType = "char"
214
+ TThostFtdcAlgorithmType = "char"
215
+ TThostFtdcIncludeCloseProfitType = "char"
216
+ TThostFtdcAllWithoutTradeType = "char"
217
+ TThostFtdcCommentType = "string"
218
+ TThostFtdcVersionType = "string"
219
+ TThostFtdcTradeCodeType = "string"
220
+ TThostFtdcTradeDateType = "string"
221
+ TThostFtdcTradeTimeType = "string"
222
+ TThostFtdcTradeSerialType = "string"
223
+ TThostFtdcTradeSerialNoType = "int"
224
+ TThostFtdcFutureIDType = "string"
225
+ TThostFtdcBankIDType = "string"
226
+ TThostFtdcBankBrchIDType = "string"
227
+ TThostFtdcBankBranchIDType = "string"
228
+ TThostFtdcOperNoType = "string"
229
+ TThostFtdcDeviceIDType = "string"
230
+ TThostFtdcRecordNumType = "string"
231
+ TThostFtdcFutureAccountType = "string"
232
+ TThostFtdcFuturePwdFlagType = "char"
233
+ TThostFtdcTransferTypeType = "char"
234
+ TThostFtdcFutureAccPwdType = "string"
235
+ TThostFtdcCurrencyCodeType = "string"
236
+ TThostFtdcRetCodeType = "string"
237
+ TThostFtdcRetInfoType = "string"
238
+ TThostFtdcTradeAmtType = "string"
239
+ TThostFtdcUseAmtType = "string"
240
+ TThostFtdcFetchAmtType = "string"
241
+ TThostFtdcTransferValidFlagType = "char"
242
+ TThostFtdcCertCodeType = "string"
243
+ TThostFtdcReasonType = "char"
244
+ TThostFtdcFundProjectIDType = "string"
245
+ TThostFtdcSexType = "char"
246
+ TThostFtdcProfessionType = "string"
247
+ TThostFtdcNationalType = "string"
248
+ TThostFtdcProvinceType = "string"
249
+ TThostFtdcRegionType = "string"
250
+ TThostFtdcCountryType = "string"
251
+ TThostFtdcLicenseNOType = "string"
252
+ TThostFtdcCompanyTypeType = "string"
253
+ TThostFtdcBusinessScopeType = "string"
254
+ TThostFtdcCapitalCurrencyType = "string"
255
+ TThostFtdcUserTypeType = "char"
256
+ TThostFtdcBranchIDType = "string"
257
+ TThostFtdcRateTypeType = "char"
258
+ TThostFtdcNoteTypeType = "char"
259
+ TThostFtdcSettlementStyleType = "char"
260
+ TThostFtdcBrokerDNSType = "string"
261
+ TThostFtdcSentenceType = "string"
262
+ TThostFtdcSettlementBillTypeType = "char"
263
+ TThostFtdcUserRightTypeType = "char"
264
+ TThostFtdcMarginPriceTypeType = "char"
265
+ TThostFtdcBillGenStatusType = "char"
266
+ TThostFtdcAlgoTypeType = "char"
267
+ TThostFtdcHandlePositionAlgoIDType = "char"
268
+ TThostFtdcFindMarginRateAlgoIDType = "char"
269
+ TThostFtdcHandleTradingAccountAlgoIDType = "char"
270
+ TThostFtdcPersonTypeType = "char"
271
+ TThostFtdcQueryInvestorRangeType = "char"
272
+ TThostFtdcInvestorRiskStatusType = "char"
273
+ TThostFtdcLegIDType = "int"
274
+ TThostFtdcLegMultipleType = "int"
275
+ TThostFtdcImplyLevelType = "int"
276
+ TThostFtdcClearAccountType = "string"
277
+ TThostFtdcOrganNOType = "string"
278
+ TThostFtdcClearbarchIDType = "string"
279
+ TThostFtdcUserEventTypeType = "char"
280
+ TThostFtdcUserEventInfoType = "string"
281
+ TThostFtdcCloseStyleType = "char"
282
+ TThostFtdcStatModeType = "char"
283
+ TThostFtdcParkedOrderStatusType = "char"
284
+ TThostFtdcParkedOrderIDType = "string"
285
+ TThostFtdcParkedOrderActionIDType = "string"
286
+ TThostFtdcVirDealStatusType = "char"
287
+ TThostFtdcOrgSystemIDType = "char"
288
+ TThostFtdcVirTradeStatusType = "char"
289
+ TThostFtdcVirBankAccTypeType = "char"
290
+ TThostFtdcVirementStatusType = "char"
291
+ TThostFtdcVirementAvailAbilityType = "char"
292
+ TThostFtdcVirementTradeCodeType = "char"
293
+ TThostFtdcPhotoTypeNameType = "string"
294
+ TThostFtdcPhotoTypeIDType = "string"
295
+ TThostFtdcPhotoNameType = "string"
296
+ TThostFtdcTopicIDType = "int"
297
+ TThostFtdcReportTypeIDType = "string"
298
+ TThostFtdcCharacterIDType = "string"
299
+ TThostFtdcAMLParamIDType = "string"
300
+ TThostFtdcAMLInvestorTypeType = "string"
301
+ TThostFtdcAMLIdCardTypeType = "string"
302
+ TThostFtdcAMLTradeDirectType = "string"
303
+ TThostFtdcAMLTradeModelType = "string"
304
+ TThostFtdcAMLOpParamValueType = "double"
305
+ TThostFtdcAMLCustomerCardTypeType = "string"
306
+ TThostFtdcAMLInstitutionNameType = "string"
307
+ TThostFtdcAMLDistrictIDType = "string"
308
+ TThostFtdcAMLRelationShipType = "string"
309
+ TThostFtdcAMLInstitutionTypeType = "string"
310
+ TThostFtdcAMLInstitutionIDType = "string"
311
+ TThostFtdcAMLAccountTypeType = "string"
312
+ TThostFtdcAMLTradingTypeType = "string"
313
+ TThostFtdcAMLTransactClassType = "string"
314
+ TThostFtdcAMLCapitalIOType = "string"
315
+ TThostFtdcAMLSiteType = "string"
316
+ TThostFtdcAMLCapitalPurposeType = "string"
317
+ TThostFtdcAMLReportTypeType = "string"
318
+ TThostFtdcAMLSerialNoType = "string"
319
+ TThostFtdcAMLStatusType = "string"
320
+ TThostFtdcAMLGenStatusType = "char"
321
+ TThostFtdcAMLSeqCodeType = "string"
322
+ TThostFtdcAMLFileNameType = "string"
323
+ TThostFtdcAMLMoneyType = "double"
324
+ TThostFtdcAMLFileAmountType = "int"
325
+ TThostFtdcCFMMCKeyType = "string"
326
+ TThostFtdcCFMMCTokenType = "string"
327
+ TThostFtdcCFMMCKeyKindType = "char"
328
+ TThostFtdcAMLReportNameType = "string"
329
+ TThostFtdcIndividualNameType = "string"
330
+ TThostFtdcCurrencyIDType = "string"
331
+ TThostFtdcCustNumberType = "string"
332
+ TThostFtdcOrganCodeType = "string"
333
+ TThostFtdcOrganNameType = "string"
334
+ TThostFtdcSuperOrganCodeType = "string"
335
+ TThostFtdcSubBranchIDType = "string"
336
+ TThostFtdcSubBranchNameType = "string"
337
+ TThostFtdcBranchNetCodeType = "string"
338
+ TThostFtdcBranchNetNameType = "string"
339
+ TThostFtdcOrganFlagType = "string"
340
+ TThostFtdcBankCodingForFutureType = "string"
341
+ TThostFtdcBankReturnCodeType = "string"
342
+ TThostFtdcPlateReturnCodeType = "string"
343
+ TThostFtdcBankSubBranchIDType = "string"
344
+ TThostFtdcFutureBranchIDType = "string"
345
+ TThostFtdcReturnCodeType = "string"
346
+ TThostFtdcOperatorCodeType = "string"
347
+ TThostFtdcClearDepIDType = "string"
348
+ TThostFtdcClearBrchIDType = "string"
349
+ TThostFtdcClearNameType = "string"
350
+ TThostFtdcBankAccountNameType = "string"
351
+ TThostFtdcInvDepIDType = "string"
352
+ TThostFtdcInvBrchIDType = "string"
353
+ TThostFtdcMessageFormatVersionType = "string"
354
+ TThostFtdcDigestType = "string"
355
+ TThostFtdcAuthenticDataType = "string"
356
+ TThostFtdcPasswordKeyType = "string"
357
+ TThostFtdcFutureAccountNameType = "string"
358
+ TThostFtdcMobilePhoneType = "string"
359
+ TThostFtdcFutureMainKeyType = "string"
360
+ TThostFtdcFutureWorkKeyType = "string"
361
+ TThostFtdcFutureTransKeyType = "string"
362
+ TThostFtdcBankMainKeyType = "string"
363
+ TThostFtdcBankWorkKeyType = "string"
364
+ TThostFtdcBankTransKeyType = "string"
365
+ TThostFtdcBankServerDescriptionType = "string"
366
+ TThostFtdcAddInfoType = "string"
367
+ TThostFtdcDescrInfoForReturnCodeType = "string"
368
+ TThostFtdcCountryCodeType = "string"
369
+ TThostFtdcSerialType = "int"
370
+ TThostFtdcPlateSerialType = "int"
371
+ TThostFtdcBankSerialType = "string"
372
+ TThostFtdcCorrectSerialType = "int"
373
+ TThostFtdcFutureSerialType = "int"
374
+ TThostFtdcApplicationIDType = "int"
375
+ TThostFtdcBankProxyIDType = "int"
376
+ TThostFtdcFBTCoreIDType = "int"
377
+ TThostFtdcServerPortType = "int"
378
+ TThostFtdcRepealedTimesType = "int"
379
+ TThostFtdcRepealTimeIntervalType = "int"
380
+ TThostFtdcTotalTimesType = "int"
381
+ TThostFtdcFBTRequestIDType = "int"
382
+ TThostFtdcTIDType = "int"
383
+ TThostFtdcTradeAmountType = "double"
384
+ TThostFtdcCustFeeType = "double"
385
+ TThostFtdcFutureFeeType = "double"
386
+ TThostFtdcSingleMaxAmtType = "double"
387
+ TThostFtdcSingleMinAmtType = "double"
388
+ TThostFtdcTotalAmtType = "double"
389
+ TThostFtdcCertificationTypeType = "char"
390
+ TThostFtdcFileBusinessCodeType = "char"
391
+ TThostFtdcCashExchangeCodeType = "char"
392
+ TThostFtdcYesNoIndicatorType = "char"
393
+ TThostFtdcBanlanceTypeType = "char"
394
+ TThostFtdcGenderType = "char"
395
+ TThostFtdcFeePayFlagType = "char"
396
+ TThostFtdcPassWordKeyTypeType = "char"
397
+ TThostFtdcFBTPassWordTypeType = "char"
398
+ TThostFtdcFBTEncryModeType = "char"
399
+ TThostFtdcBankRepealFlagType = "char"
400
+ TThostFtdcBrokerRepealFlagType = "char"
401
+ TThostFtdcInstitutionTypeType = "char"
402
+ TThostFtdcLastFragmentType = "char"
403
+ TThostFtdcBankAccStatusType = "char"
404
+ TThostFtdcMoneyAccountStatusType = "char"
405
+ TThostFtdcManageStatusType = "char"
406
+ TThostFtdcSystemTypeType = "char"
407
+ TThostFtdcTxnEndFlagType = "char"
408
+ TThostFtdcProcessStatusType = "char"
409
+ TThostFtdcCustTypeType = "char"
410
+ TThostFtdcFBTTransferDirectionType = "char"
411
+ TThostFtdcOpenOrDestroyType = "char"
412
+ TThostFtdcAvailabilityFlagType = "char"
413
+ TThostFtdcOrganTypeType = "char"
414
+ TThostFtdcOrganLevelType = "char"
415
+ TThostFtdcProtocalIDType = "char"
416
+ TThostFtdcConnectModeType = "char"
417
+ TThostFtdcSyncModeType = "char"
418
+ TThostFtdcBankAccTypeType = "char"
419
+ TThostFtdcFutureAccTypeType = "char"
420
+ TThostFtdcOrganStatusType = "char"
421
+ TThostFtdcCCBFeeModeType = "char"
422
+ TThostFtdcCommApiTypeType = "char"
423
+ TThostFtdcServiceIDType = "int"
424
+ TThostFtdcServiceLineNoType = "int"
425
+ TThostFtdcServiceNameType = "string"
426
+ TThostFtdcLinkStatusType = "char"
427
+ TThostFtdcCommApiPointerType = "int"
428
+ TThostFtdcPwdFlagType = "char"
429
+ TThostFtdcSecuAccTypeType = "char"
430
+ TThostFtdcTransferStatusType = "char"
431
+ TThostFtdcSponsorTypeType = "char"
432
+ TThostFtdcReqRspTypeType = "char"
433
+ TThostFtdcFBTUserEventTypeType = "char"
434
+ TThostFtdcBankIDByBankType = "string"
435
+ TThostFtdcBankOperNoType = "string"
436
+ TThostFtdcBankCustNoType = "string"
437
+ TThostFtdcDBOPSeqNoType = "int"
438
+ TThostFtdcTableNameType = "string"
439
+ TThostFtdcPKNameType = "string"
440
+ TThostFtdcPKValueType = "string"
441
+ TThostFtdcDBOperationType = "char"
442
+ TThostFtdcSyncFlagType = "char"
443
+ TThostFtdcTargetIDType = "string"
444
+ TThostFtdcSyncTypeType = "char"
445
+ TThostFtdcFBETimeType = "string"
446
+ TThostFtdcFBEBankNoType = "string"
447
+ TThostFtdcFBECertNoType = "string"
448
+ TThostFtdcExDirectionType = "char"
449
+ TThostFtdcFBEBankAccountType = "string"
450
+ TThostFtdcFBEBankAccountNameType = "string"
451
+ TThostFtdcFBEAmtType = "double"
452
+ TThostFtdcFBEBusinessTypeType = "string"
453
+ TThostFtdcFBEPostScriptType = "string"
454
+ TThostFtdcFBERemarkType = "string"
455
+ TThostFtdcExRateType = "double"
456
+ TThostFtdcFBEResultFlagType = "char"
457
+ TThostFtdcFBERtnMsgType = "string"
458
+ TThostFtdcFBEExtendMsgType = "string"
459
+ TThostFtdcFBEBusinessSerialType = "string"
460
+ TThostFtdcFBESystemSerialType = "string"
461
+ TThostFtdcFBETotalExCntType = "int"
462
+ TThostFtdcFBEExchStatusType = "char"
463
+ TThostFtdcFBEFileFlagType = "char"
464
+ TThostFtdcFBEAlreadyTradeType = "char"
465
+ TThostFtdcFBEOpenBankType = "string"
466
+ TThostFtdcFBEUserEventTypeType = "char"
467
+ TThostFtdcFBEFileNameType = "string"
468
+ TThostFtdcFBEBatchSerialType = "string"
469
+ TThostFtdcFBEReqFlagType = "char"
470
+ TThostFtdcNotifyClassType = "char"
471
+ TThostFtdcRiskNofityInfoType = "string"
472
+ TThostFtdcForceCloseSceneIdType = "string"
473
+ TThostFtdcForceCloseTypeType = "char"
474
+ TThostFtdcInstrumentIDsType = "string"
475
+ TThostFtdcRiskNotifyMethodType = "char"
476
+ TThostFtdcRiskNotifyStatusType = "char"
477
+ TThostFtdcRiskUserEventType = "char"
478
+ TThostFtdcParamIDType = "int"
479
+ TThostFtdcParamNameType = "string"
480
+ TThostFtdcParamValueType = "string"
481
+ TThostFtdcConditionalOrderSortTypeType = "char"
482
+ TThostFtdcSendTypeType = "char"
483
+ TThostFtdcClientIDStatusType = "char"
484
+ TThostFtdcIndustryIDType = "string"
485
+ TThostFtdcQuestionIDType = "string"
486
+ TThostFtdcQuestionContentType = "string"
487
+ TThostFtdcOptionIDType = "string"
488
+ TThostFtdcOptionContentType = "string"
489
+ TThostFtdcQuestionTypeType = "char"
490
+ TThostFtdcProcessIDType = "string"
491
+ TThostFtdcSeqNoType = "int"
492
+ TThostFtdcUOAProcessStatusType = "string"
493
+ TThostFtdcProcessTypeType = "string"
494
+ TThostFtdcBusinessTypeType = "char"
495
+ TThostFtdcCfmmcReturnCodeType = "char"
496
+ TThostFtdcExReturnCodeType = "int"
497
+ TThostFtdcClientTypeType = "char"
498
+ TThostFtdcExchangeIDTypeType = "char"
499
+ TThostFtdcExClientIDTypeType = "char"
500
+ TThostFtdcClientClassifyType = "string"
501
+ TThostFtdcUOAOrganTypeType = "string"
502
+ TThostFtdcUOACountryCodeType = "string"
503
+ TThostFtdcAreaCodeType = "string"
504
+ TThostFtdcFuturesIDType = "string"
505
+ TThostFtdcCffmcDateType = "string"
506
+ TThostFtdcCffmcTimeType = "string"
507
+ TThostFtdcNocIDType = "string"
508
+ TThostFtdcUpdateFlagType = "char"
509
+ TThostFtdcApplyOperateIDType = "char"
510
+ TThostFtdcApplyStatusIDType = "char"
511
+ TThostFtdcSendMethodType = "char"
512
+ TThostFtdcEventTypeType = "string"
513
+ TThostFtdcEventModeType = "char"
514
+ TThostFtdcUOAAutoSendType = "char"
515
+ TThostFtdcQueryDepthType = "int"
516
+ TThostFtdcDataCenterIDType = "int"
517
+ TThostFtdcFlowIDType = "char"
518
+ TThostFtdcCheckLevelType = "char"
519
+ TThostFtdcCheckNoType = "int"
520
+ TThostFtdcCheckStatusType = "char"
521
+ TThostFtdcUsedStatusType = "char"
522
+ TThostFtdcRateTemplateNameType = "string"
523
+ TThostFtdcPropertyStringType = "string"
524
+ TThostFtdcBankAcountOriginType = "char"
525
+ TThostFtdcMonthBillTradeSumType = "char"
526
+ TThostFtdcFBTTradeCodeEnumType = "char"
527
+ TThostFtdcRateTemplateIDType = "string"
528
+ TThostFtdcRiskRateType = "string"
529
+ TThostFtdcTimestampType = "int"
530
+ TThostFtdcInvestorIDRuleNameType = "string"
531
+ TThostFtdcInvestorIDRuleExprType = "string"
532
+ TThostFtdcLastDriftType = "int"
533
+ TThostFtdcLastSuccessType = "int"
534
+ TThostFtdcAuthKeyType = "string"
535
+ TThostFtdcSerialNumberType = "string"
536
+ TThostFtdcOTPTypeType = "char"
537
+ TThostFtdcOTPVendorsIDType = "string"
538
+ TThostFtdcOTPVendorsNameType = "string"
539
+ TThostFtdcOTPStatusType = "char"
540
+ TThostFtdcBrokerUserTypeType = "char"
541
+ TThostFtdcFutureTypeType = "char"
542
+ TThostFtdcFundEventTypeType = "char"
543
+ TThostFtdcAccountSourceTypeType = "char"
544
+ TThostFtdcCodeSourceTypeType = "char"
545
+ TThostFtdcUserRangeType = "char"
546
+ TThostFtdcTimeSpanType = "string"
547
+ TThostFtdcImportSequenceIDType = "string"
548
+ TThostFtdcByGroupType = "char"
549
+ TThostFtdcTradeSumStatModeType = "char"
550
+ TThostFtdcComTypeType = "int"
551
+ TThostFtdcUserProductIDType = "string"
552
+ TThostFtdcUserProductNameType = "string"
553
+ TThostFtdcUserProductMemoType = "string"
554
+ TThostFtdcCSRCCancelFlagType = "string"
555
+ TThostFtdcCSRCDateType = "string"
556
+ TThostFtdcCSRCInvestorNameType = "string"
557
+ TThostFtdcCSRCOpenInvestorNameType = "string"
558
+ TThostFtdcCSRCInvestorIDType = "string"
559
+ TThostFtdcCSRCIdentifiedCardNoType = "string"
560
+ TThostFtdcCSRCClientIDType = "string"
561
+ TThostFtdcCSRCBankFlagType = "string"
562
+ TThostFtdcCSRCBankAccountType = "string"
563
+ TThostFtdcCSRCOpenNameType = "string"
564
+ TThostFtdcCSRCMemoType = "string"
565
+ TThostFtdcCSRCTimeType = "string"
566
+ TThostFtdcCSRCTradeIDType = "string"
567
+ TThostFtdcCSRCExchangeInstIDType = "string"
568
+ TThostFtdcCSRCMortgageNameType = "string"
569
+ TThostFtdcCSRCReasonType = "string"
570
+ TThostFtdcIsSettlementType = "string"
571
+ TThostFtdcCSRCMoneyType = "double"
572
+ TThostFtdcCSRCPriceType = "double"
573
+ TThostFtdcCSRCOptionsTypeType = "string"
574
+ TThostFtdcCSRCStrikePriceType = "double"
575
+ TThostFtdcCSRCTargetProductIDType = "string"
576
+ TThostFtdcCSRCTargetInstrIDType = "string"
577
+ TThostFtdcCommModelNameType = "string"
578
+ TThostFtdcCommModelMemoType = "string"
579
+ TThostFtdcExprSetModeType = "char"
580
+ TThostFtdcRateInvestorRangeType = "char"
581
+ TThostFtdcAgentBrokerIDType = "string"
582
+ TThostFtdcDRIdentityIDType = "int"
583
+ TThostFtdcDRIdentityNameType = "string"
584
+ TThostFtdcDBLinkIDType = "string"
585
+ TThostFtdcSyncDataStatusType = "char"
586
+ TThostFtdcTradeSourceType = "char"
587
+ TThostFtdcFlexStatModeType = "char"
588
+ TThostFtdcByInvestorRangeType = "char"
589
+ TThostFtdcSRiskRateType = "string"
590
+ TThostFtdcSequenceNo12Type = "int"
591
+ TThostFtdcPropertyInvestorRangeType = "char"
592
+ TThostFtdcFileStatusType = "char"
593
+ TThostFtdcFileGenStyleType = "char"
594
+ TThostFtdcSysOperModeType = "char"
595
+ TThostFtdcSysOperTypeType = "char"
596
+ TThostFtdcCSRCDataQueyTypeType = "char"
597
+ TThostFtdcFreezeStatusType = "char"
598
+ TThostFtdcStandardStatusType = "char"
599
+ TThostFtdcCSRCFreezeStatusType = "string"
600
+ TThostFtdcRightParamTypeType = "char"
601
+ TThostFtdcRightTemplateIDType = "string"
602
+ TThostFtdcRightTemplateNameType = "string"
603
+ TThostFtdcDataStatusType = "char"
604
+ TThostFtdcAMLCheckStatusType = "char"
605
+ TThostFtdcAmlDateTypeType = "char"
606
+ TThostFtdcAmlCheckLevelType = "char"
607
+ TThostFtdcAmlCheckFlowType = "string"
608
+ TThostFtdcDataTypeType = "string"
609
+ TThostFtdcExportFileTypeType = "char"
610
+ TThostFtdcSettleManagerTypeType = "char"
611
+ TThostFtdcSettleManagerIDType = "string"
612
+ TThostFtdcSettleManagerNameType = "string"
613
+ TThostFtdcSettleManagerLevelType = "char"
614
+ TThostFtdcSettleManagerGroupType = "char"
615
+ TThostFtdcCheckResultMemoType = "string"
616
+ TThostFtdcFunctionUrlType = "string"
617
+ TThostFtdcAuthInfoType = "string"
618
+ TThostFtdcAuthCodeType = "string"
619
+ TThostFtdcLimitUseTypeType = "char"
620
+ TThostFtdcDataResourceType = "char"
621
+ TThostFtdcMarginTypeType = "char"
622
+ TThostFtdcActiveTypeType = "char"
623
+ TThostFtdcMarginRateTypeType = "char"
624
+ TThostFtdcBackUpStatusType = "char"
625
+ TThostFtdcInitSettlementType = "char"
626
+ TThostFtdcReportStatusType = "char"
627
+ TThostFtdcSaveStatusType = "char"
628
+ TThostFtdcSettArchiveStatusType = "char"
629
+ TThostFtdcCTPTypeType = "char"
630
+ TThostFtdcToolIDType = "string"
631
+ TThostFtdcToolNameType = "string"
632
+ TThostFtdcCloseDealTypeType = "char"
633
+ TThostFtdcMortgageFundUseRangeType = "char"
634
+ TThostFtdcCurrencyUnitType = "double"
635
+ TThostFtdcExchangeRateType = "double"
636
+ TThostFtdcSpecProductTypeType = "char"
637
+ TThostFtdcFundMortgageTypeType = "char"
638
+ TThostFtdcAccountSettlementParamIDType = "char"
639
+ TThostFtdcCurrencyNameType = "string"
640
+ TThostFtdcCurrencySignType = "string"
641
+ TThostFtdcFundMortDirectionType = "char"
642
+ TThostFtdcBusinessClassType = "char"
643
+ TThostFtdcSwapSourceTypeType = "char"
644
+ TThostFtdcCurrExDirectionType = "char"
645
+ TThostFtdcCurrencySwapStatusType = "char"
646
+ TThostFtdcCurrExchCertNoType = "string"
647
+ TThostFtdcBatchSerialNoType = "string"
648
+ TThostFtdcReqFlagType = "char"
649
+ TThostFtdcResFlagType = "char"
650
+ TThostFtdcPageControlType = "string"
651
+ TThostFtdcRecordCountType = "int"
652
+ TThostFtdcCurrencySwapMemoType = "string"
653
+ TThostFtdcExStatusType = "char"
654
+ TThostFtdcClientRegionType = "char"
655
+ TThostFtdcWorkPlaceType = "string"
656
+ TThostFtdcBusinessPeriodType = "string"
657
+ TThostFtdcWebSiteType = "string"
658
+ TThostFtdcUOAIdCardTypeType = "string"
659
+ TThostFtdcClientModeType = "string"
660
+ TThostFtdcInvestorFullNameType = "string"
661
+ TThostFtdcUOABrokerIDType = "string"
662
+ TThostFtdcUOAZipCodeType = "string"
663
+ TThostFtdcUOAEMailType = "string"
664
+ TThostFtdcOldCityType = "string"
665
+ TThostFtdcCorporateIdentifiedCardNoType = "string"
666
+ TThostFtdcHasBoardType = "char"
667
+ TThostFtdcStartModeType = "char"
668
+ TThostFtdcTemplateTypeType = "char"
669
+ TThostFtdcLoginModeType = "char"
670
+ TThostFtdcPromptTypeType = "char"
671
+ TThostFtdcLedgerManageIDType = "string"
672
+ TThostFtdcInvestVarietyType = "string"
673
+ TThostFtdcBankAccountTypeType = "string"
674
+ TThostFtdcLedgerManageBankType = "string"
675
+ TThostFtdcCffexDepartmentNameType = "string"
676
+ TThostFtdcCffexDepartmentCodeType = "string"
677
+ TThostFtdcHasTrusteeType = "char"
678
+ TThostFtdcCSRCMemo1Type = "string"
679
+ TThostFtdcAssetmgrCFullNameType = "string"
680
+ TThostFtdcAssetmgrApprovalNOType = "string"
681
+ TThostFtdcAssetmgrMgrNameType = "string"
682
+ TThostFtdcAmTypeType = "char"
683
+ TThostFtdcCSRCAmTypeType = "string"
684
+ TThostFtdcCSRCFundIOTypeType = "char"
685
+ TThostFtdcCusAccountTypeType = "char"
686
+ TThostFtdcCSRCNationalType = "string"
687
+ TThostFtdcCSRCSecAgentIDType = "string"
688
+ TThostFtdcLanguageTypeType = "char"
689
+ TThostFtdcAmAccountType = "string"
690
+ TThostFtdcAssetmgrClientTypeType = "char"
691
+ TThostFtdcAssetmgrTypeType = "char"
692
+ TThostFtdcUOMType = "string"
693
+ TThostFtdcSHFEInstLifePhaseType = "string"
694
+ TThostFtdcSHFEProductClassType = "string"
695
+ TThostFtdcPriceDecimalType = "string"
696
+ TThostFtdcInTheMoneyFlagType = "string"
697
+ TThostFtdcCheckInstrTypeType = "char"
698
+ TThostFtdcDeliveryTypeType = "char"
699
+ TThostFtdcBigMoneyType = "double"
700
+ TThostFtdcMaxMarginSideAlgorithmType = "char"
701
+ TThostFtdcDAClientTypeType = "char"
702
+ TThostFtdcCombinInstrIDType = "string"
703
+ TThostFtdcCombinSettlePriceType = "string"
704
+ TThostFtdcDCEPriorityType = "int"
705
+ TThostFtdcTradeGroupIDType = "int"
706
+ TThostFtdcIsCheckPrepaType = "int"
707
+ TThostFtdcUOAAssetmgrTypeType = "char"
708
+ TThostFtdcDirectionEnType = "char"
709
+ TThostFtdcOffsetFlagEnType = "char"
710
+ TThostFtdcHedgeFlagEnType = "char"
711
+ TThostFtdcFundIOTypeEnType = "char"
712
+ TThostFtdcFundTypeEnType = "char"
713
+ TThostFtdcFundDirectionEnType = "char"
714
+ TThostFtdcFundMortDirectionEnType = "char"
715
+ TThostFtdcSwapBusinessTypeType = "string"
716
+ TThostFtdcOptionsTypeType = "char"
717
+ TThostFtdcStrikeModeType = "char"
718
+ TThostFtdcStrikeTypeType = "char"
719
+ TThostFtdcApplyTypeType = "char"
720
+ TThostFtdcGiveUpDataSourceType = "char"
721
+ TThostFtdcExecOrderSysIDType = "string"
722
+ TThostFtdcExecResultType = "char"
723
+ TThostFtdcStrikeSequenceType = "int"
724
+ TThostFtdcStrikeTimeType = "string"
725
+ TThostFtdcCombinationTypeType = "char"
726
+ TThostFtdcDceCombinationTypeType = "char"
727
+ TThostFtdcOptionRoyaltyPriceTypeType = "char"
728
+ TThostFtdcBalanceAlgorithmType = "char"
729
+ TThostFtdcActionTypeType = "char"
730
+ TThostFtdcForQuoteStatusType = "char"
731
+ TThostFtdcValueMethodType = "char"
732
+ TThostFtdcExecOrderPositionFlagType = "char"
733
+ TThostFtdcExecOrderCloseFlagType = "char"
734
+ TThostFtdcProductTypeType = "char"
735
+ TThostFtdcCZCEUploadFileNameType = "char"
736
+ TThostFtdcDCEUploadFileNameType = "char"
737
+ TThostFtdcSHFEUploadFileNameType = "char"
738
+ TThostFtdcCFFEXUploadFileNameType = "char"
739
+ TThostFtdcCombDirectionType = "char"
740
+ TThostFtdcStrikeOffsetTypeType = "char"
741
+ TThostFtdcReserveOpenAccStasType = "char"
742
+ TThostFtdcLoginRemarkType = "string"
743
+ TThostFtdcInvestUnitIDType = "string"
744
+ TThostFtdcBulletinIDType = "int"
745
+ TThostFtdcNewsTypeType = "string"
746
+ TThostFtdcNewsUrgencyType = "char"
747
+ TThostFtdcAbstractType = "string"
748
+ TThostFtdcComeFromType = "string"
749
+ TThostFtdcURLLinkType = "string"
750
+ TThostFtdcLongIndividualNameType = "string"
751
+ TThostFtdcLongFBEBankAccountNameType = "string"
752
+ TThostFtdcDateTimeType = "string"
753
+ TThostFtdcWeakPasswordSourceType = "char"
754
+ TThostFtdcRandomStringType = "string"
755
+ TThostFtdcOptSelfCloseFlagType = "char"
756
+ TThostFtdcBizTypeType = "char"
757
+ TThostFtdcAppTypeType = "char"
758
+ TThostFtdcAppIDType = "string"
759
+ TThostFtdcSystemInfoLenType = "int"
760
+ TThostFtdcAdditionalInfoLenType = "int"
761
+ TThostFtdcClientSystemInfoType = "string"
762
+ TThostFtdcAdditionalInfoType = "string"
763
+ TThostFtdcBase64ClientSystemInfoType = "string"
764
+ TThostFtdcBase64AdditionalInfoType = "string"
765
+ TThostFtdcCurrentAuthMethodType = "int"
766
+ TThostFtdcCaptchaInfoLenType = "int"
767
+ TThostFtdcCaptchaInfoType = "string"
768
+ TThostFtdcUserTextSeqType = "int"
769
+ TThostFtdcHandshakeDataType = "string"
770
+ TThostFtdcHandshakeDataLenType = "int"
771
+ TThostFtdcCryptoKeyVersionType = "string"
772
+ TThostFtdcRsaKeyVersionType = "int"
773
+ TThostFtdcSoftwareProviderIDType = "string"
774
+ TThostFtdcCollectTimeType = "string"
775
+ TThostFtdcQueryFreqType = "int"
776
+ TThostFtdcResponseValueType = "char"
777
+ TThostFtdcOTCTradeTypeType = "char"
778
+ TThostFtdcMatchTypeType = "char"
779
+ TThostFtdcOTCTraderIDType = "string"
780
+ TThostFtdcRiskValueType = "double"
781
+ TThostFtdcIDBNameType = "string"