package com.se.simu.domain; /** * 持续时间实体类 * * @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; } }