package com.ruoyi.buss.domain.dto;
|
|
import java.io.Serializable;
|
|
public class ZdSupplyPlanDTO implements Serializable {
|
private Long taskId;
|
|
private String t1Time;
|
|
private String usedBerthIds;
|
|
public Long getTaskId() {
|
return taskId;
|
}
|
|
public void setTaskId(Long taskId) {
|
this.taskId = taskId;
|
}
|
|
public String getT1Time() {
|
return t1Time;
|
}
|
|
public void setT1Time(String t1Time) {
|
this.t1Time = t1Time;
|
}
|
|
public String getUsedBerthIds() {
|
return usedBerthIds;
|
}
|
|
public void setUsedBerthIds(String usedBerthIds) {
|
this.usedBerthIds = usedBerthIds;
|
}
|
}
|