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

eleme.openapi.sdk.media.ScanInnerResult Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.media;

import eleme.openapi.sdk.media.manage.GlobalFileResource;

/**
 * Created by on 2015/6/18.
 */
public class ScanInnerResult {

    private String url;                 //文件url,如果使用url方式扫描会有这个结果
    private String keywords;            //使用关键字扫描的时候,返回匹配的关键字
    private String requestId;           //当前文件扫描的requestId

    private GlobalFileResource file;    //使用file方式扫描的时候,返回被扫描的文件

    private int type;                   //类型,0非黄图,1黄图。
    private double score;               //分值

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public String getKeywords() {
        return keywords;
    }

    public void setKeywords(String keywords) {
        this.keywords = keywords;
    }

    public double getScore() {
        return score;
    }

    public void setScore(double score) {
        this.score = score;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }

    public String getRequestId() {
        return requestId;
    }

    public void setRequestId(String requestId) {
        this.requestId = requestId;
    }

    public GlobalFileResource getFile() {
        return file;
    }

    public void setFile(GlobalFileResource file) {
        this.file = file;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy