dcb
2025-06-18 4c4d0f591f94428ed7e5d2f4ae5df5c5087d8c26
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.se.nsl.domain.dto;
 
@SuppressWarnings("ALL")
public class DurationDto {
    private long start;
 
    private long end;
 
    public DurationDto() {
    }
 
    public DurationDto(long start, long end) {
        this.start = start;
        this.end = end;
    }
 
    public long getStart() {
        return start;
    }
 
    public void setStart(long start) {
        this.start = start;
    }
 
    public long getEnd() {
        return end;
    }
 
    public void setEnd(long end) {
        this.end = end;
    }
}