Consult.java
3.01 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
package com.sincere.student.model;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
import java.util.List;
@ApiModel
public class Consult {
@ApiModelProperty(value = "主键")
private int id ;
@ApiModelProperty(value = "学校主键")
private int universityId ;
@ApiModelProperty(value = "排序")
private int sort ;
@ApiModelProperty(value = "图片地址")
private String imgUrl ;
@ApiModelProperty(value = "名称")
private String name ;
@ApiModelProperty(value = "编码")
private String code ;
@ApiModelProperty(value = "栏目分类")
private Integer columnType;
@ApiModelProperty(value = "栏目分类名称")
private String columnTypeName;
@ApiModelProperty(value = "视频地址")
private String videoUrl;
@ApiModelProperty(value = "内容")
private String context;
@ApiModelProperty(value = "联系方式")
private String phone;
@ApiModelProperty(value = "状态")
private Integer status;
@ApiModelProperty(value = "4个栏目")
private List<UniversityConsultDetail> list ;
public String getColumnTypeName() {
return columnTypeName;
}
public void setColumnTypeName(String columnTypeName) {
this.columnTypeName = columnTypeName;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getUniversityId() {
return universityId;
}
public void setUniversityId(int universityId) {
this.universityId = universityId;
}
public int getSort() {
return sort;
}
public void setSort(int sort) {
this.sort = sort;
}
public String getImgUrl() {
return imgUrl;
}
public void setImgUrl(String imgUrl) {
this.imgUrl = imgUrl;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getColumnType() {
return columnType;
}
public void setColumnType(Integer columnType) {
this.columnType = columnType;
}
public String getVideoUrl() {
return videoUrl;
}
public void setVideoUrl(String videoUrl) {
this.videoUrl = videoUrl;
}
public String getContext() {
return context;
}
public void setContext(String context) {
this.context = context;
}
public List<UniversityConsultDetail> getList() {
return list;
}
public void setList(List<UniversityConsultDetail> list) {
this.list = list;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
}