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

cn.blankcat.dto.interaction.SearchRecord Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package cn.blankcat.dto.interaction;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@AllArgsConstructor
@NoArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
// SearchRecord 每一条搜索结果
public class SearchRecord {

    private String cover;
    private String title;
    private String tips;
    private String url;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy