Commit b28f806a244cc88613473e7068540c78aadc1f85
Merge remote-tracking branch 'origin/master'
Showing
9 changed files
with
17 additions
and
90 deletions
commons/api/hg/loan_generalCustomer/generalCustomerLoan_delete.py
1 | # -*- coding: utf-8 -*- | 1 | # -*- coding: utf-8 -*- |
2 | -""" | ||
3 | -@Time : 2021/8/31 14:43 | ||
4 | -@Auth : wlm | ||
5 | -@File :createAndTrade.py | ||
6 | -@IDE :PyCharm | ||
7 | -""" | ||
8 | -""" | ||
9 | -普通客户模式——删除借款 | ||
10 | -""" | 2 | + |
11 | from commons import common as com | 3 | from commons import common as com |
12 | from commons.MySession import hg | 4 | from commons.MySession import hg |
13 | 5 | ||
14 | class generalCustomerLoan_delete(): | 6 | class generalCustomerLoan_delete(): |
15 | - | 7 | + "普通客户模式——删除借款" |
16 | def __init__(self): | 8 | def __init__(self): |
17 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/generalCustomerLoan/delete/66?_t="+str(com.time_stamp()) | 9 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/generalCustomerLoan/delete/66?_t="+str(com.time_stamp()) |
18 | self.header = { | 10 | self.header = { |
commons/api/hg/loan_generalCustomer/generalCustomerLoan_enforce.py
1 | # -*- coding: utf-8 -*- | 1 | # -*- coding: utf-8 -*- |
2 | -""" | ||
3 | -@Time : 2021/8/31 14:43 | ||
4 | -@Auth : wlm | ||
5 | -@File :createAndTrade.py | ||
6 | -@IDE :PyCharm | ||
7 | -""" | ||
8 | -""" | ||
9 | -普通客户模式——执行借款 | ||
10 | -""" | 2 | + |
11 | from commons import common as com | 3 | from commons import common as com |
12 | from commons.MySession import hg | 4 | from commons.MySession import hg |
13 | 5 | ||
14 | class generalCustomerLoan_enforce(): | 6 | class generalCustomerLoan_enforce(): |
15 | - | 7 | + "普通客户模式——执行借款" |
16 | def __init__(self): | 8 | def __init__(self): |
17 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/generalCustomerLoan/enforce/66?_t="+str(com.time_stamp()) | 9 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/generalCustomerLoan/enforce/66?_t="+str(com.time_stamp()) |
18 | self.header = { | 10 | self.header = { |
commons/api/hg/loan_generalCustomer/generalCustomerLoan_list.py
1 | # -*- coding: utf-8 -*- | 1 | # -*- coding: utf-8 -*- |
2 | -""" | ||
3 | -@Time : 2021/8/31 14:43 | ||
4 | -@Auth : wlm | ||
5 | -@File :createAndTrade.py | ||
6 | -@IDE :PyCharm | ||
7 | -""" | ||
8 | -""" | ||
9 | -普通客户模式——列表查看 | ||
10 | -""" | 2 | + |
11 | from commons import common as com | 3 | from commons import common as com |
12 | from commons.MySession import hg | 4 | from commons.MySession import hg |
13 | 5 | ||
14 | class generalCustomerLoan_list(): | 6 | class generalCustomerLoan_list(): |
15 | - | 7 | + "普通客户模式——列表查询" |
16 | def __init__(self): | 8 | def __init__(self): |
17 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/generalCustomerLoan/list" | 9 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/generalCustomerLoan/list" |
18 | self.header = { | 10 | self.header = { |
commons/api/hg/loan_generalCustomer/generalCustomerLoan_save.py
1 | # -*- coding: utf-8 -*- | 1 | # -*- coding: utf-8 -*- |
2 | -""" | ||
3 | -@Time : 2021/8/31 14:43 | ||
4 | -@Auth : wlm | ||
5 | -@File :createAndTrade.py | ||
6 | -@IDE :PyCharm | ||
7 | -""" | ||
8 | -""" | ||
9 | -普通客户模式——新增预付款 | ||
10 | -""" | 2 | + |
11 | 3 | ||
12 | from commons.MySession import hg | 4 | from commons.MySession import hg |
13 | 5 | ||
14 | class generalCustomerLoan_save(): | 6 | class generalCustomerLoan_save(): |
15 | - | 7 | + "普通客户模式——新增预付款" |
16 | def __init__(self): | 8 | def __init__(self): |
17 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/generalCustomerLoan/save" | 9 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/generalCustomerLoan/save" |
18 | self.header = { | 10 | self.header = { |
commons/api/hg/loan_vipCustomer/getSingleWithoutValidate.py
1 | # -*- coding: utf-8 -*- | 1 | # -*- coding: utf-8 -*- |
2 | -""" | ||
3 | -@Time : 2021/8/31 14:43 | ||
4 | -@Auth : wlm | ||
5 | -@File :createAndTrade.py | ||
6 | -@IDE :PyCharm | ||
7 | -""" | ||
8 | -""" | ||
9 | -大客户模式——刷卡 | ||
10 | -""" | 2 | + |
11 | 3 | ||
12 | from commons.MySession import hg | 4 | from commons.MySession import hg |
13 | 5 | ||
14 | class getSingleWithoutValidate(): | 6 | class getSingleWithoutValidate(): |
15 | - | 7 | + "大客户模式——刷卡" |
16 | def __init__(self): | 8 | def __init__(self): |
17 | self.url = "http://test.gateway.diligrp.com:8285/account-service/api/account/getSingleWithoutValidate" | 9 | self.url = "http://test.gateway.diligrp.com:8285/account-service/api/account/getSingleWithoutValidate" |
18 | self.header = { | 10 | self.header = { |
commons/api/hg/loan_vipCustomer/specialLoanQuery.py
1 | # -*- coding: utf-8 -*- | 1 | # -*- coding: utf-8 -*- |
2 | -""" | ||
3 | -@Time : 2021/8/31 14:43 | ||
4 | -@Auth : wlm | ||
5 | -@File :createAndTrade.py | ||
6 | -@IDE :PyCharm | ||
7 | -""" | ||
8 | -""" | ||
9 | -大客户模式——查询客户的订单信息 | ||
10 | -""" | 2 | + |
11 | 3 | ||
12 | from commons.MySession import hg | 4 | from commons.MySession import hg |
13 | 5 | ||
14 | class specialLoanQuery(): | 6 | class specialLoanQuery(): |
15 | - | 7 | + "大客户模式——查询客户的订单信息" |
16 | def __init__(self): | 8 | def __init__(self): |
17 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/aggregation/specialLoanQuery" | 9 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/aggregation/specialLoanQuery" |
18 | self.header = { | 10 | self.header = { |
commons/api/hg/loan_vipCustomer/vipCustomerLoan_details.py
1 | # -*- coding: utf-8 -*- | 1 | # -*- coding: utf-8 -*- |
2 | -""" | ||
3 | -@Time : 2021/8/31 14:43 | ||
4 | -@Auth : wlm | ||
5 | -@File :createAndTrade.py | ||
6 | -@IDE :PyCharm | ||
7 | -""" | ||
8 | -""" | ||
9 | -大客户模式——查询明细 | ||
10 | -""" | 2 | + |
11 | 3 | ||
12 | from commons.MySession import hg | 4 | from commons.MySession import hg |
13 | 5 | ||
14 | class vipCustomerLoan_details(): | 6 | class vipCustomerLoan_details(): |
15 | - | 7 | + "大客户模式——查询明细" |
16 | def __init__(self): | 8 | def __init__(self): |
17 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/vipCustomerLoan/details" | 9 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/vipCustomerLoan/details" |
18 | self.header = { | 10 | self.header = { |
commons/api/hg/loan_vipCustomer/vipCustomerLoan_list.py
1 | # -*- coding: utf-8 -*- | 1 | # -*- coding: utf-8 -*- |
2 | -""" | ||
3 | -@Time : 2021/8/31 14:43 | ||
4 | -@Auth : wlm | ||
5 | -@File :createAndTrade.py | ||
6 | -@IDE :PyCharm | ||
7 | -""" | ||
8 | -""" | ||
9 | -大客户模式——列表查询 | ||
10 | -""" | ||
11 | 2 | ||
12 | from commons.MySession import hg | 3 | from commons.MySession import hg |
13 | 4 | ||
14 | class vipCustomerLoan_list(): | 5 | class vipCustomerLoan_list(): |
15 | - | 6 | + "大客户模式——列表查询" |
16 | def __init__(self): | 7 | def __init__(self): |
17 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/vipCustomerLoan/list" | 8 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/vipCustomerLoan/list" |
18 | self.header = { | 9 | self.header = { |
commons/api/hg/loan_vipCustomer/vipCustomerLoan_save.py
1 | # -*- coding: utf-8 -*- | 1 | # -*- coding: utf-8 -*- |
2 | -""" | ||
3 | -@Time : 2021/8/31 14:43 | ||
4 | -@Auth : wlm | ||
5 | -@File :createAndTrade.py | ||
6 | -@IDE :PyCharm | ||
7 | -""" | ||
8 | -""" | ||
9 | -大客户模式——新增预付款 | ||
10 | -""" | 2 | + |
11 | 3 | ||
12 | from commons.MySession import hg | 4 | from commons.MySession import hg |
13 | 5 | ||
14 | class vipCustomerLoan_save(): | 6 | class vipCustomerLoan_save(): |
15 | - | 7 | + "大客户模式——新增预付款" |
16 | def __init__(self): | 8 | def __init__(self): |
17 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/vipCustomerLoan/save" | 9 | self.url = "http://test.gateway.diligrp.com:8285/hg-trading/api/vipCustomerLoan/save" |
18 | self.header = { | 10 | self.header = { |