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

eleme.openapi.sdk.api.entity.product.RecommendPhotoDto Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.entity.product;

import eleme.openapi.sdk.api.enumeration.product.*;
import eleme.openapi.sdk.api.entity.product.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;

public class RecommendPhotoDto{

    /**
     * 图片模板id
     */
    private Long templateImgId;
    public Long getTemplateImgId() {
        return templateImgId;
    }
    public void setTemplateImgId(Long templateImgId) {
        this.templateImgId = templateImgId;
    }
    
    /**
     * 推荐图片hash
     */
    private String photoHash;
    public String getPhotoHash() {
        return photoHash;
    }
    public void setPhotoHash(String photoHash) {
        this.photoHash = photoHash;
    }
    
    /**
     * 推荐图片URL
     */
    private String url;
    public String getUrl() {
        return url;
    }
    public void setUrl(String url) {
        this.url = url;
    }
    
    /**
     * 推荐图片质量分
     */
    private Double score;
    public Double getScore() {
        return score;
    }
    public void setScore(Double score) {
        this.score = score;
    }
    
    /**
     * 推荐图片优先级
     */
    private Integer topk;
    public Integer getTopk() {
        return topk;
    }
    public void setTopk(Integer topk) {
        this.topk = topk;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy