listFixedPaid.py 706 Bytes
# -*- coding: utf-8 -*-
"""
@Time : 2021/10/11 10:06
@Auth : wlm
@File :listFixedPaid.py
@IDE :PyCharm
"""
"""
大客户模式——查询结算单
"""

from commons import common as com
from commons.MySession import hg
class listFixedPaid():

    def __init__(self):
        self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/tradingOrder/listFixedPaid"
        self.header ={
                    "UAP_accessToken":"demo",
                    "UAP_refreshToken":"demo"
                    }
        self.body = ""


# lfp = listFixedPaid()
# print(lfp.body)
# re = hg.post(url = lfp.url,json = lfp.body,headers = lfp.header,proxies=hg.myproxies)
# print(re.json())
# print(re.headers)