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