AppConsult.java
981 Bytes
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
package com.sincere.student.dto.app;
import com.sincere.student.model.Consult;
import com.sincere.student.utils.Page;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.List;
@ApiModel
public class AppConsult {
@ApiModelProperty(value = "招生咨询栏目主键")
private int columnTypeId;
@ApiModelProperty(value = "招生咨询栏目名称")
private String name;
@ApiModelProperty(value = "具体招生咨询 信息")
private List<Consult> list;
public int getColumnTypeId() {
return columnTypeId;
}
public void setColumnTypeId(int columnTypeId) {
this.columnTypeId = columnTypeId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<Consult> getList() {
return list;
}
public void setList(List<Consult> list) {
this.list = list;
}
}