| 1234567891011121314151617181920212223 |
- package com.water.bi.dto;
-
- import java.util.Date;
-
- public class ETLTaskDTO {
- private String name;
- private String sourceId;
- private String targetId;
- private String scheduleType;
- private Date executeTime;
-
- // Getters and Setters
- public String getName() { return name; }
- public void setName(String name) { this.name = name; }
- public String getSourceId() { return sourceId; }
- public void setSourceId(String sourceId) { this.sourceId = sourceId; }
- public String getTargetId() { return targetId; }
- public void setTargetId(String targetId) { this.targetId = targetId; }
- public String getScheduleType() { return scheduleType; }
- public void setScheduleType(String scheduleType) { this.scheduleType = scheduleType; }
- public Date getExecuteTime() { return executeTime; }
- public void setExecuteTime(Date executeTime) { this.executeTime = executeTime; }
- }
|