Class UpdateFeedback

java.lang.Object
de.bytestore.hostinger.entity.space.UpdateFeedback

@Entity(name="host_UpdateFeedback") public class UpdateFeedback extends Object
Represents an entity for storing feedback related to software updates. This class is mapped to the "HOST_UPDATE_FEEDBACK" database table and includes details about the feedback content, associated license, software version, and audit metadata for tracking creation and modification. Main attributes: - ID: Unique identifier for the feedback entity. - License: A reference to the associated License entity providing context for the feedback. - Version: The software version to which the feedback is related. - Content: Feedback content provided by users, capped at a length of 1024 characters. Audit metadata: - CreatedBy: Stores the username of the entity's creator. - CreatedDate: Stores the timestamp when the entity was created. - LastModifiedBy: Stores the username of the last user who modified the entity. - LastModifiedDate: Stores the timestamp of the last modification. Indexes: - An index exists on the "LICENSE_ID" column to optimize queries involving the associated License entity. This class is annotated with Jmix and Spring Data annotations to support entity lifecycle, persistence, and auditing.
  • Constructor Details

    • UpdateFeedback

      public UpdateFeedback()