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