Package de.bytestore.hostinger.entity
Class CardConfig
java.lang.Object
de.bytestore.hostinger.entity.CardConfig
Represents the configuration data for a card entity in the system.
This class is a Jmix entity tied to the "HOST_CARD_CONFIG" database table.
It is used to store key-value pairs associated with a specific card configuration.
Annotations:
- @JmixEntity: Indicates that this is a Jmix entity.
- @InstanceName: Specifies the property to use as the instance name in the UI.
- @Table: Maps the entity to the "HOST_CARD_CONFIG" table with its defined columns.
- @Entity: Marks it as a JPA-managed entity.
Fields:
- id: The unique identifier for the card configuration.
- key: The configuration key.
- card: The name or identifier of the card this configuration is associated with.
- value: The configuration value.
Methods:
- Getters and setters for the id, key, card, and value fields to manipulate and retrieve the entity's data.
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
CardConfig
public CardConfig()
-
-
Method Details
-
getCard
-
setCard
-
getKey
-
setKey
-
getValue
-
setValue
-
setId
-
getId
-