UniversityConsultDetail.java
1.25 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
package com.sincere.student.model;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@ApiModel
public class UniversityConsultDetail {
@ApiModelProperty(value = "主键")
private Integer id;
@ApiModelProperty(value = "招生咨询会主键")
private Integer consultId;
@ApiModelProperty(value = "栏目名称")
private String columnName;
@ApiModelProperty(value = "栏目链接")
private String columnUrl;
@ApiModelProperty(value = "排序")
private Integer sort;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getConsultId() {
return consultId;
}
public void setConsultId(Integer consultId) {
this.consultId = consultId;
}
public String getColumnName() {
return columnName;
}
public void setColumnName(String columnName) {
this.columnName = columnName;
}
public String getColumnUrl() {
return columnUrl;
}
public void setColumnUrl(String columnUrl) {
this.columnUrl = columnUrl;
}
public Integer getSort() {
return sort;
}
public void setSort(Integer sort) {
this.sort = sort;
}
}