Class ReplyEntity

java.lang.Object
com.bytedesk.core.base.BaseEntity
com.bytedesk.voc.reply.ReplyEntity
All Implemented Interfaces:
Serializable

@Entity public class ReplyEntity extends BaseEntity
Voice of Customer reply entity for feedback response management Manages replies to user feedback and internal communication Database Table: bytedesk_voc_reply Purpose: Stores feedback replies, threaded conversations, and internal notes
See Also:
  • Field Details

    • feedbackId

      private Long feedbackId
      ID of the feedback this reply belongs to
    • userId

      private Long userId
      ID of the user who wrote this reply
    • content

      private String content
      Content of the reply
    • parentId

      private Long parentId
      ID of the parent reply for threaded conversations
    • likeCount

      private Integer likeCount
      Number of likes received on this reply
    • internal

      private Boolean internal
      Whether this is an internal reply (not visible to customers)
  • Constructor Details

    • ReplyEntity

      public ReplyEntity()