DataDistrictDTO.java
1.5 KB
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
74
75
76
package com.diligrp.assistant.data.domain;
public class DataDistrictDTO {
// ID
private Long id;
// 父区域ID
private Long parentId;
// 名称
private String name;
// 级别
private Integer level;
// 全称
private String fullName;
// 路径
private String path;
public static DataDistrictDTO of(Long id, Long parentId, String name, Integer level, String fullName, String path) {
DataDistrictDTO district = new DataDistrictDTO();
district.id = id;
district.parentId = parentId;
district.name = name;
district.level = level;
district.fullName = fullName;
district.path = path;
return district;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getParentId() {
return parentId;
}
public void setParentId(Long parentId) {
this.parentId = parentId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getLevel() {
return level;
}
public void setLevel(Integer level) {
this.level = level;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
}