source: src/main/java/tech/techharbor/Model/ServiceManModel.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: 740 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 = "service_man", schema = "project", catalog = "db_202324z_va_prj_techharbor")
11public class ServiceManModel {
12 @GeneratedValue(strategy = GenerationType.IDENTITY)
13 @Id
14 @Column(name = "user_id", nullable = false)
15 private Integer userId;
16
17 @Override
18 public boolean equals(Object o) {
19 if (this == o) return true;
20 if (o == null || getClass() != o.getClass()) return false;
21 ServiceManModel that = (ServiceManModel) o;
22 return Objects.equals(userId, that.userId);
23 }
24
25 @Override
26 public int hashCode() {
27 return Objects.hash(userId);
28 }
29}
Note: See TracBrowser for help on using the repository browser.