Changeset 723994f for src/main/java/it/finki/tinki/model
- Timestamp:
- 01/07/21 16:13:55 (4 years ago)
- Branches:
- master
- Children:
- 509cb95
- Parents:
- 1397178
- Location:
- src/main/java/it/finki/tinki/model
- Files:
-
- 5 added
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/it/finki/tinki/model/Match.java
r1397178 r723994f 1 1 package it.finki.tinki.model; 2 2 3 import it.finki.tinki.model.enumerator.WorkType; 3 4 import lombok.Data; 4 5 … … 14 15 float coefficient; 15 16 17 WorkType type; 18 16 19 public Match(){} 17 20 18 public Match(float coefficient ) {21 public Match(float coefficient, WorkType type) { 19 22 this.coefficient = coefficient; 23 this.type = type; 20 24 } 21 25 } -
src/main/java/it/finki/tinki/model/dto/AccountLoginDTO.java
r1397178 r723994f 1 package it.finki.tinki.model. pojo;1 package it.finki.tinki.model.dto; 2 2 3 3 import it.finki.tinki.model.enumerator.AccountType; … … 5 5 6 6 @Data 7 public class AccountLoginD ataPojo{8 private String account;7 public class AccountLoginDTO { 8 private String email; 9 9 private String password; 10 10 private AccountType type; -
src/main/java/it/finki/tinki/model/dto/AuthResponseDTO.java
r1397178 r723994f 1 package it.finki.tinki.model. pojo;1 package it.finki.tinki.model.dto; 2 2 3 3 import it.finki.tinki.model.enumerator.AccountType; … … 5 5 6 6 @Data 7 public class AuthResponseD ataPojo{8 Long id;9 String email;10 String name;11 AccountType type;7 public class AuthResponseDTO { 8 private Long id; 9 private String email; 10 private String name; 11 private AccountType type; 12 12 13 public AuthResponseD ataPojo() {13 public AuthResponseDTO() { 14 14 this.id = null; 15 15 this.email = "Wrong username or password!";
Note:
See TracChangeset
for help on using the changeset viewer.