Blame view

src/main/java/com/xkl/service/IQRCodeService.java 284 Bytes
zhaoyue authored
1 2 3 4 5 6 7 8 9
package com.xkl.service;

/**
 * Created by zhaoyue on 2017/3/11.
 */
public interface IQRCodeService {
    public String getQRCodeWithAccount(String account);

    public String getAccountWithQRCode(String qrcode);
zhaoyue authored
10 11

    public String getDecryptHttpParaQr(String encryptQr, long t);
zhaoyue authored
12
}