package com.ruoyi.buss.domain.vo; import java.io.Serializable; import java.util.List; public class TaskPlanStatisTime implements Serializable { private String harborName; private String berthName; private String berthStrategy; private List 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 getShipInfo() { return shipInfo; } public void setShipInfo(List shipInfo) { this.shipInfo = shipInfo; } }