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