yonge 5 年之前
父节点
当前提交
0d1ea2ac17
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      cms/src/main/java/com/ym/mec/cms/controller/queryinfo/NewsInformationQueryInfo.java

+ 11 - 0
cms/src/main/java/com/ym/mec/cms/controller/queryinfo/NewsInformationQueryInfo.java

@@ -11,6 +11,9 @@ public class NewsInformationQueryInfo extends QueryInfo {
 
 	@ApiModelProperty(value = "类型,1精彩活动,2热门资讯,3banner类型", required = false)
 	private Integer type;
+	
+	@ApiModelProperty(value = "子类型", required = false)
+	private Integer subType;
 
 	@ApiModelProperty(value = "资讯状态", required = false)
 	private NewsStatusEnum status;
@@ -34,6 +37,14 @@ public class NewsInformationQueryInfo extends QueryInfo {
 		this.type = type;
 	}
 
+	public Integer getSubType() {
+		return subType;
+	}
+
+	public void setSubType(Integer subType) {
+		this.subType = subType;
+	}
+
 	public NewsStatusEnum getStatus() {
 		return status;
 	}