package com.ruoyi.buss.domain.dto;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class TaskRecordList implements Serializable {
|
private Long berthId;
|
private String berthName;
|
private Long harborId;
|
private String harborName;
|
private List<Subdata> subData;
|
|
public Long getBerthId() {
|
return berthId;
|
}
|
|
public void setBerthId(Long berthId) {
|
this.berthId = berthId;
|
}
|
|
public String getBerthName() {
|
return berthName;
|
}
|
|
public void setBerthName(String berthName) {
|
this.berthName = berthName;
|
}
|
|
public Long getHarborId() {
|
return harborId;
|
}
|
|
public void setHarborId(Long harborId) {
|
this.harborId = harborId;
|
}
|
|
public String getHarborName() {
|
return harborName;
|
}
|
|
public void setHarborName(String harborName) {
|
this.harborName = harborName;
|
}
|
|
public List<Subdata> getSubData() {
|
return subData;
|
}
|
|
public void setSubData(List<Subdata> subData) {
|
this.subData = subData;
|
}
|
|
@Override
|
public String toString() {
|
return "TaskRecordList =: {" +
|
"berthId=" + berthId +
|
", berthName='" + berthName + '\'' +
|
", harborId=" + harborId +
|
", harborName='" + harborName + '\'' +
|
", subData=" + subData +
|
'}';
|
}
|
}
|