001package com.thed.model;
002
003import java.util.Date;
004
005public class ExecutionRequest {
006
007    private Long rtsId;
008    private Long testerId;
009    private String status;
010    private Date changedOn;
011    private Date executedOn;
012    private Long actualTime;
013    private String notes;
014    private Long changeBy;
015
016    public Long getRtsId() {
017        return rtsId;
018    }
019
020    public void setRtsId(Long rtsId) {
021        this.rtsId = rtsId;
022    }
023
024    public Long getTesterId() {
025        return testerId;
026    }
027
028    public void setTesterId(Long testerId) {
029        this.testerId = testerId;
030    }
031
032    public String getStatus() {
033        return status;
034    }
035
036    public void setStatus(String status) {
037        this.status = status;
038    }
039
040    public Date getChangedOn() {
041        return changedOn;
042    }
043
044    public void setChangedOn(Date changedOn) {
045        this.changedOn = changedOn;
046    }
047
048    public Date getExecutedOn() {
049        return executedOn;
050    }
051
052    public void setExecutedOn(Date executedOn) {
053        this.executedOn = executedOn;
054    }
055
056    public Long getActualTime() {
057        return actualTime;
058    }
059
060    public void setActualTime(Long actualTime) {
061        this.actualTime = actualTime;
062    }
063
064    public String getNotes() {
065        return notes;
066    }
067
068    public void setNotes(String notes) {
069        this.notes = notes;
070    }
071
072    public Long getChangeBy() {
073        return changeBy;
074    }
075
076    public void setChangeBy(Long changeBy) {
077        this.changeBy = changeBy;
078    }
079}