Class FeedbackEntity

java.lang.Object
com.bytedesk.core.base.BaseEntity
com.bytedesk.voc.feedback.FeedbackEntity
All Implemented Interfaces:
Serializable

@Entity public class FeedbackEntity extends BaseEntity
Voice of Customer feedback entity for user feedback management Manages user feedback, suggestions, and complaint tracking Database Table: bytedesk_voc_feedback Purpose: Stores user feedback content, status tracking, and assignment management
See Also:
  • Field Details

    • content

      private String content
      Main content of the feedback
    • userId

      private Long userId
      ID of the user who submitted the feedback
    • type

      private String type
      Type of feedback (suggestion, bug, complaint, other)
    • status

      private String status
      Current status of the feedback (pending, processing, resolved, closed)
    • replyCount

      private Integer replyCount
      Number of replies to this feedback
    • likeCount

      private Integer likeCount
      Number of likes received on this feedback
    • assignedTo

      private Long assignedTo
      ID of the administrator assigned to handle this feedback
  • Constructor Details

    • FeedbackEntity

      public FeedbackEntity()