21 lines
419 B
Java
21 lines
419 B
Java
package _11.asktpk.artisanconnectbackend.entities;
|
|
|
|
import jakarta.persistence.*;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Entity
|
|
@Table(name = "attribute_values")
|
|
@Getter @Setter
|
|
public class AttributeValues {
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
private Long id;
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "id_attribute")
|
|
private Attributes attribute;
|
|
|
|
private String value;
|
|
}
|