WxXcxSecurityMediaCheckAsyncDetailRes.java 1.11 KB
package com.yanzuoguang.wxxcx.security;

/**
 * detail
 *
 * @author 李贤军
 */
public class WxXcxSecurityMediaCheckAsyncDetailRes {
    /**
     * strategy
     */
    private String strategy;
    /**
     * errcode
     */
    private String errcode;
    /**
     * suggest
     */
    private String suggest;
    /**
     * label
     */
    private String label;
    /**
     * prob
     */
    private String prob;

    public String getStrategy() {
        return strategy;
    }

    public void setStrategy(String strategy) {
        this.strategy = strategy;
    }

    public String getErrcode() {
        return errcode;
    }

    public void setErrcode(String errcode) {
        this.errcode = errcode;
    }

    public String getSuggest() {
        return suggest;
    }

    public void setSuggest(String suggest) {
        this.suggest = suggest;
    }

    public String getLabel() {
        return label;
    }

    public void setLabel(String label) {
        this.label = label;
    }

    public String getProb() {
        return prob;
    }

    public void setProb(String prob) {
        this.prob = prob;
    }
}