-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathPointSheet.java
More file actions
32 lines (27 loc) · 747 Bytes
/
PointSheet.java
File metadata and controls
32 lines (27 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.springbatch.SpringBatchLearning.model;
import lombok.*;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Getter
@Setter
@ToString
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode(onlyExplicitlyIncluded = true)
public class PointSheet {
private String name;
private int registration;
private String date;
private Integer month;
private Integer year;
private Map<String, List<String>> registryPoints = new HashMap<>();
@Override
public String toString() {
return "FolhaPonto{" +
"nome=" + this.name +
", matricula=" + this.registration +
", registrosPontos=" + this.registryPoints +
"}";
}
}