All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jfinal.weixin.sdk.msg.in.event.ScanCodeInfo Maven / Gradle / Ivy

package com.jfinal.weixin.sdk.msg.in.event;

import java.io.Serializable;

/**
 * 菜单二维码扫描的结果实体
 * @author L.cm
 */
@SuppressWarnings("serial")
public class ScanCodeInfo implements Serializable {

    private String ScanType;
    private String ScanResult;

    public ScanCodeInfo(String scanType, String scanResult) {
        super();
        ScanType = scanType;
        ScanResult = scanResult;
    }
    public String getScanType() {
        return ScanType;
    }
    public void setScanType(String scanType) {
        ScanType = scanType;
    }
    public String getScanResult() {
        return ScanResult;
    }
    public void setScanResult(String scanResult) {
        ScanResult = scanResult;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy