StudentLoanManagement
RankingDTO.java
Go to the documentation of this file.
1package com.student_loan.dtos;
2
3public class RankingDTO {
4 private Long userId;
5 private String name;
6 private Double averageRating;
7 private Integer penalties;
8
9 public RankingDTO(Long userId, String name, Double averageRating, Integer penalties) {
10 this.userId = userId;
11 this.name = name;
12 this.averageRating= averageRating;
13 this.penalties = penalties;
14 }
15
16 public Long getUserId() { return userId; }
17 public String getName() { return name; }
18 public Double getAverageRating(){ return averageRating; }
19 public Integer getPenalties() { return penalties; }
20}
RankingDTO(Long userId, String name, Double averageRating, Integer penalties)