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
package com.ruoyi.buss.domain.dto;
 
import java.io.Serializable;
 
public class ZdGroupDTO implements Serializable {
 
    private String berthIds;
 
    private String berthGroupRule;
 
    private String taskId;
 
    public String getBerthIds() {
        return berthIds;
    }
 
    public void setBerthIds(String berthIds) {
        this.berthIds = berthIds;
    }
 
    public String getBerthGroupRule() {
        return berthGroupRule;
    }
 
    public void setBerthGroupRule(String berthGroupRule) {
        this.berthGroupRule = berthGroupRule;
    }
 
    public String getTaskId() {
        return taskId;
    }
 
    public void setTaskId(String taskId) {
        this.taskId = taskId;
    }
 
    @Override
    public String toString() {
        return "ZdGroupDTO =: {" +
                "berthIds='" + berthIds + '\'' +
                ", berthGroupRule='" + berthGroupRule + '\'' +
                ", taskId='" + taskId + '\'' +
                '}';
    }
}