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

com.luna.baidu.dto.text.TextSimilarResultDTO Maven / Gradle / Ivy

There is a newer version: 2.1.0-RELEASE
Show newest version
package com.luna.baidu.dto.text;

/**
 * @Package: com.luna.baidu.dto.text
 * @ClassName: TextSimilarDTO
 * @Author: luna
 * @CreateTime: 2020/8/14 18:43
 * @Description:
 */
public class TextSimilarResultDTO {

    private TextSimilarDTO words;

    private Double         score;

    public TextSimilarDTO getWords() {
        return words;
    }

    public void setWords(TextSimilarDTO words) {
        this.words = words;
    }

    public Double getScore() {
        return score;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy