|
@@ -21,6 +21,16 @@ public class AppParam {
|
|
|
@ApiModelProperty("老师端:TEACHER 学生端:STUDENT")
|
|
|
private String clientType;
|
|
|
|
|
|
+ @ApiModelProperty("个人资讯条数 默认10条")
|
|
|
+ private int newsLimit = 10;
|
|
|
+
|
|
|
+ public int getNewsLimit() {
|
|
|
+ return newsLimit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNewsLimit(int newsLimit) {
|
|
|
+ this.newsLimit = newsLimit;
|
|
|
+ }
|
|
|
|
|
|
public String getClientType() {
|
|
|
return clientType;
|