- 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 Summary
Fields
ID of the administrator assigned to handle this feedback
Main content of the feedback
Number of likes received on this feedback
Number of replies to this feedback
Current status of the feedback (pending, processing, resolved, closed)
Type of feedback (suggestion, bug, complaint, other)
ID of the user who submitted the feedback
-
Constructor Summary
Constructors
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
content
Main content of the feedback
-
userId
ID of the user who submitted the feedback
-
type
Type of feedback (suggestion, bug, complaint, other)
-
status
Current status of the feedback (pending, processing, resolved, closed)
-
replyCount
Number of replies to this feedback
-
likeCount
Number of likes received on this feedback
-
assignedTo
ID of the administrator assigned to handle this feedback
-
Constructor Details
-
FeedbackEntity
public FeedbackEntity()