source: src/main/java/tech/techharbor/Model/WarehousemanModel.java

main
Last change on this file was f4b4afa, checked in by Nikola Todoroski <nikola.todoroski@…>, 6 months ago

Pushed whole project, original project location on github:https://github.com/hehxd/Tech-Harbor

  • Property mode set to 100644
File size: 906 bytes
RevLine 
[f4b4afa]1package tech.techharbor.Model;
2
3import jakarta.persistence.*;
4import lombok.Data;
5
6import java.util.Objects;
7
8@Entity
9@Data
10@Table(name = "warehouseman", schema = "project", catalog = "db_202324z_va_prj_techharbor")
11public class WarehousemanModel {
12 @GeneratedValue(strategy = GenerationType.IDENTITY)
13 @Id
14 @Column(name = "user_id", nullable = false)
15 private Integer userId;
16 @Basic
17 @Column(name = "warehouse_id", nullable = false)
18 private Integer warehouseId;
19
20 @Override
21 public boolean equals(Object o) {
22 if (this == o) return true;
23 if (o == null || getClass() != o.getClass()) return false;
24 WarehousemanModel that = (WarehousemanModel) o;
25 return Objects.equals(userId, that.userId) && Objects.equals(warehouseId, that.warehouseId);
26 }
27
28 @Override
29 public int hashCode() {
30 return Objects.hash(userId, warehouseId);
31 }
32}
Note: See TracBrowser for help on using the repository browser.