Changeset d522b3f for src/main/java/com


Ignore:
Timestamp:
02/02/23 14:34:32 (22 months ago)
Author:
DenicaKj <dkorvezir@…>
Branches:
master
Children:
6626008
Parents:
2463d33
Message:

Categories and Cinemas

Location:
src/main/java/com/example/moviezone/model
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/com/example/moviezone/model/Categories.java

    r2463d33 rd522b3f  
    11package com.example.moviezone.model;
    22
    3 import jakarta.persistence.Entity;
     3import jakarta.persistence.*;
    44import lombok.Getter;
    55import lombok.Setter;
    66import lombok.ToString;
     7
     8import java.util.Objects;
    79
    810@Getter
     
    1113@Entity
    1214public class Categories {
     15    @Id
     16    @Column(name = "id_category", nullable = false)
     17    @GeneratedValue(strategy = GenerationType.IDENTITY)
     18    private Long id_category;
     19    String name;
     20    Integer extra_amount;
     21
     22    public Categories(String name, Integer extra_amount) {
     23        this.name = name;
     24        this.extra_amount = extra_amount;
     25    }
     26
     27    public Categories() {
     28
     29    }
     30
     31    @Override
     32    public boolean equals(Object o) {
     33        if (this == o) return true;
     34        if (o == null || getClass() != o.getClass()) return false;
     35        Categories that = (Categories) o;
     36        return Objects.equals(id_category, that.id_category) && Objects.equals(name, that.name) && Objects.equals(extra_amount, that.extra_amount);
     37    }
     38
     39    @Override
     40    public int hashCode() {
     41        return Objects.hash(id_category, name, extra_amount);
     42    }
    1343}
Note: See TracChangeset for help on using the changeset viewer.