package com.ruoyi.buss.domain.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import java.io.Serializable;
|
|
@Schema(name = "AllocationReqDTO", description = "舰艇港口分配DTO")
|
public class AllocationReqDTO implements Serializable {
|
|
@Schema(name = "shipnos", description = "舰艇 舷号字符串,多个用逗号分隔",required=true)
|
private String shipnos;
|
|
@Schema(name = "rule", description = "港口分配策略")
|
private String rule;
|
|
@Schema(name = "harborids", description = "港口编码字符串,多个用逗号分隔")
|
private String harborids;
|
|
public String getShipnos() {
|
return shipnos;
|
}
|
|
public void setShipnos(String shipnos) {
|
this.shipnos = shipnos;
|
}
|
|
public String getRule() {
|
return rule;
|
}
|
|
public void setRule(String rule) {
|
this.rule = rule;
|
}
|
|
public String getHarborids() {
|
return harborids;
|
}
|
|
public void setHarborids(String harborids) {
|
this.harborids = harborids;
|
}
|
}
|