Class FaqElastic

java.lang.Object
com.bytedesk.kbase.faq.elastic.FaqElastic

public class FaqElastic extends Object
  • Field Details

    • uid

      private String uid
    • question

      @Field(type=Text, analyzer="ik_max_word") private String question
    • answer

      @Field(type=Text, analyzer="ik_max_word") private String answer
    • similarQuestions

      @Field(type=Text, analyzer="ik_max_word") private List<String> similarQuestions
    • tagList

      @Field(type=Keyword) private List<String> tagList
    • orgUid

      @Field(type=Keyword) private String orgUid
    • kbUid

      @Field(type=Keyword) private String kbUid
    • categoryUid

      @Field(type=Keyword) private String categoryUid
    • enabled

      @Field(type=Boolean) private Boolean enabled
    • startDate

      @Field(type=Date, format=date_hour_minute_second_millis) private LocalDateTime startDate
    • endDate

      @Field(type=Date, format=date_hour_minute_second_millis) private LocalDateTime endDate
    • viewCount

      @Field(type=Integer) private Integer viewCount
    • clickCount

      @Field(type=Integer) private Integer clickCount
    • upCount

      @Field(type=Integer) private Integer upCount
    • downCount

      @Field(type=Integer) private Integer downCount
  • Constructor Details

    • FaqElastic

      public FaqElastic()
  • Method Details