IQRCodeService.java 217 Bytes
package com.xkl.service;

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

    public String getAccountWithQRCode(String qrcode);
}