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 + '\'' +
|
'}';
|
}
|
}
|