1
13693261870
2024-11-01 189ef60e83e726a1b3563285606d8a145e1f409a
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
33
34
35
36
37
package com.se.simu.domain.vo;
 
/**
 * 持续时间实体类
 *
 * @author WWW
 * @date 2024-07-18
 */
public class Duration {
    long start;
 
    long end;
 
    public Duration() {
    }
 
    public Duration(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;
    }
}