智慧水务管理系统 - 精河县供水工程综合管理平台

ETLTaskDTO.java 911B

1234567891011121314151617181920212223
  1. package com.water.bi.dto;
  2. import java.util.Date;
  3. public class ETLTaskDTO {
  4. private String name;
  5. private String sourceId;
  6. private String targetId;
  7. private String scheduleType;
  8. private Date executeTime;
  9. // Getters and Setters
  10. public String getName() { return name; }
  11. public void setName(String name) { this.name = name; }
  12. public String getSourceId() { return sourceId; }
  13. public void setSourceId(String sourceId) { this.sourceId = sourceId; }
  14. public String getTargetId() { return targetId; }
  15. public void setTargetId(String targetId) { this.targetId = targetId; }
  16. public String getScheduleType() { return scheduleType; }
  17. public void setScheduleType(String scheduleType) { this.scheduleType = scheduleType; }
  18. public Date getExecuteTime() { return executeTime; }
  19. public void setExecuteTime(Date executeTime) { this.executeTime = executeTime; }
  20. }