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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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 +
                '}';
    }
}