Your Name
2023-03-24 7330728153970cb96e8ae90fa816516079e978c6
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.java110.doc.entity;
 
import java.io.Serializable;
 
public class RequestMappingsDocDto implements Serializable, Comparable<RequestMappingsDocDto> {
 
    private String name;
 
    private String resource;
 
    private int seq;
 
    private String url;
 
    private String startWay;
 
 
    public RequestMappingsDocDto() {
    }
 
    public RequestMappingsDocDto(String name, String resource, int seq, String url, String startWay) {
        this.name = name;
        this.resource = resource;
        this.seq = seq;
        this.url = url;
        this.startWay = startWay;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getResource() {
        return resource;
    }
 
    public void setResource(String resource) {
        this.resource = resource;
    }
 
    public int getSeq() {
        return seq;
    }
 
    public void setSeq(int seq) {
        this.seq = seq;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getStartWay() {
        return startWay;
    }
 
    public void setStartWay(String startWay) {
        this.startWay = startWay;
    }
 
    @Override
    public int compareTo(RequestMappingsDocDto o) {
        return this.getSeq() - o.getSeq();
    }
}