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
package com.ruoyi.buss.domain.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
 
import java.io.Serializable;
 
@Schema(name = "AllocBerthTimeReqDTO", description = "泊位分配DTO")
public class AllocBerthTimeReqDTO implements Serializable {
 
    @Schema(name = "rule", description = "泊位分配策略")
    private String rule;
 
    @Schema(name = "deptId", description = "需要进行分配的部门编码")
    private Long deptId;
 
    @Schema(name = "taskId", description = "任务编号")
    private Long taskId;
 
    public String getRule() {
        return rule;
    }
 
    public void setRule(String rule) {
        this.rule = rule;
    }
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public Long getTaskId() {
        return taskId;
    }
 
    public void setTaskId(Long taskId) {
        this.taskId = taskId;
    }
}