13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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;
    }
}