package com.ruoyi.buss.domain.vo;
|
|
import com.ruoyi.buss.domain.DsTaskDetail;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class TaskPlanStatis implements Serializable {
|
|
private String harborName;
|
|
private String berthName;
|
|
private String berthStrategy;
|
|
private List<DsTaskDetail> shipInfo;
|
|
public String getHarborName() {
|
return harborName;
|
}
|
|
public void setHarborName(String harborName) {
|
this.harborName = harborName;
|
}
|
|
public String getBerthName() {
|
return berthName;
|
}
|
|
public void setBerthName(String berthName) {
|
this.berthName = berthName;
|
}
|
|
public String getBerthStrategy() {
|
return berthStrategy;
|
}
|
|
public void setBerthStrategy(String berthStrategy) {
|
this.berthStrategy = berthStrategy;
|
}
|
|
public List<DsTaskDetail> getShipInfo() {
|
return shipInfo;
|
}
|
|
public void setShipInfo(List<DsTaskDetail> shipInfo) {
|
this.shipInfo = shipInfo;
|
}
|
}
|