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
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;
    }
}