package com.ruoyi.buss.domain.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import java.io.Serializable;
|
|
@Schema(name = "AllocBerthReqDTO", description = "泊位分配DTO")
|
public class AllocBerthReqDTO implements Serializable {
|
|
@Schema(name = "berthids", description = "分配的泊位id,多个泊位用逗号分隔")
|
private String berthids;
|
|
@Schema(name = "rule", description = "泊位分配策略")
|
private String rule;
|
|
@Schema(name = "deptId", description = "需要进行分配的部门编码")
|
private Long deptId;
|
|
@Schema(name = "taskId", description = "任务编号")
|
private Long taskId;
|
|
public String getBerthids() {
|
return berthids;
|
}
|
|
public void setBerthids(String berthids) {
|
this.berthids = berthids;
|
}
|
|
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;
|
}
|
}
|