예제 #1
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def getBizToken(data):
    url = host + '/discernApi/getBizToken'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #2
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def getIdentityInfoByCustId(data):
    url = host + '/authorization/getIdentityInfoByCustId'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #3
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def sendOCRTime(data):
    url = host + '/authorization/sendOCRTime'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #4
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def doRegister(data):
    url = host + '/reg/doRegister'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #5
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def getProductInfo(data):
    url = host + '/product/getProductInfo'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #6
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def partRepayTry(data):
    url = host + '/repay/partRepayTry'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #7
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def creditForH5Risk(data):
    url = host + '/order/creditForH5Risk'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #8
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def bindCardSendSmsCode(data):
    url = host + '/basicinfo/bindCardSendSmsCode'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #9
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def bindCardCheckSmsCode(data):
    url = host + '/basicinfo/bindCardCheckSmsCode'
    method = 'POST'
    requestType = 'data'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #10
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def getBank(data):
    url = host + '/basicinfo/getBank'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #11
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def bankCard(data):
    url = host + '/discernApi/bankCard'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #12
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def getSupportBankList(data):
    url = host + '/msg/getSupportBankList'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #13
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def basicinfogetComplete(data):
    url = host + '/basicinfo/getComplete'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #14
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def producthomePage(data):
    url = host + '/product/homePage'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #15
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def isCanRepay(data):
    url = host + '/order/isCanRepay'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #16
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def updatePassWord(data):
    url = host + '/basicinfo/updatePassWord'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #17
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def repaymentPlanList(data):
    url = host + '/repay/repaymentPlanList'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #18
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def getOrderPageInfo(data):
    url = host + '/order/getOrderPageInfo'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #19
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def directRepay(data):
    url = host + '/repay/directRepay'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #20
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def login(data):
    url = host + '/login/login'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #21
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def saveH5gid(data):
    url = host + '/authorization/saveH5gid'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #22
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def checkPayPassword(data):
    url = host + '/basicinfo/checkPayPassword'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #23
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def reggetSmsCode(data):
    url = host + '/reg/getSmsCode'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #24
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def createOrder(data):
    url = host + '/order/createOrder'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #25
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def applyProduct(data):
    url = host + '/product/applyProduct'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #26
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def checkTimePeriod(data):
    url = host + '/product/checkTimePeriod'
    method = 'POST'
    requestType = 'data'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #27
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def checkOCRTimes(data):
    url = host + '/authorization/checkOCRTimes'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #28
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def repayreceipt(data):
    url = host + '/repay/receipty'
    method = 'POST'
    requestType = 'data'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #29
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def idCardBack(data):
    url = host + '/discernApi/idCardBack'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
예제 #30
0
파일: Appapi.py 프로젝트: xiaopeiguan/ALP
def maintenanceinfo(data):
    url = host + '/maintenance/info'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r