33 lines
952 B
Java
33 lines
952 B
Java
package com.gxwebsoft.house.ai;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/** 资料库检索返回的一条原始资料及其来源元数据。 */
|
|
@Data
|
|
public class HouseAiKnowledgeSearchItem {
|
|
|
|
private Integer entryId;
|
|
private String topic;
|
|
private String title;
|
|
private String content;
|
|
private List<String> tags = new ArrayList<>();
|
|
private Integer locationId;
|
|
private String locationName;
|
|
private String locationType;
|
|
private String parentLocationName;
|
|
private String propertyCompany;
|
|
private BigDecimal propertyFees;
|
|
private String waterBillingType;
|
|
private BigDecimal waterUnitPrice;
|
|
private String electricityBillingType;
|
|
private BigDecimal electricityUnitPrice;
|
|
private Boolean parkingAvailable;
|
|
private String parkingFee;
|
|
private List<String> matchFields = new ArrayList<>();
|
|
private double similarity;
|
|
}
|