Got initial framework running
Build / build (push) Failing after 9s

This commit is contained in:
2025-06-04 09:43:53 +02:00
parent ed68ead1fb
commit 20bd00f67b
14 changed files with 133 additions and 122 deletions
@@ -0,0 +1,29 @@
package be.seeseepuff.pcinv.models;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
import lombok.Getter;
import lombok.Setter;
/**
* Represents a RAM DIMM or similar memory asset in the inventory system.
*/
@Getter
@Setter
@Entity
public class RamAsset
{
@Id
@GeneratedValue
private Long id;
/// The ID of the associated asset, linking it to the generic Asset model.
private Long assetId;
/// The capacity of the RAM in bytes.
private Long capacity;
/// The type of memory. E.g.: DDR2, SDRAM, ISA-8, etc...
private String type;
}