|
@@ -6,8 +6,11 @@ import com.yonge.cooleshow.biz.dal.enums.YesOrNoEnum;
|
|
import com.yonge.cooleshow.common.page.QueryInfo;
|
|
import com.yonge.cooleshow.common.page.QueryInfo;
|
|
|
|
|
|
public class SubjectQueryInfo extends QueryInfo {
|
|
public class SubjectQueryInfo extends QueryInfo {
|
|
- @ApiModelProperty(value = "父节点编号,默认0",required = false)
|
|
|
|
- private Long parentId = 0L;
|
|
|
|
|
|
+ @ApiModelProperty(value = "父节点编号",required = false)
|
|
|
|
+ private Long parentId;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "查询类型(category - 分类 list - 列表)",required = false)
|
|
|
|
+ private String queryType;
|
|
|
|
|
|
@ApiModelProperty(value = "节点状态,默认0未删除,1删除",required = false)
|
|
@ApiModelProperty(value = "节点状态,默认0未删除,1删除",required = false)
|
|
private YesOrNoEnum delFlag = YesOrNoEnum.NO;
|
|
private YesOrNoEnum delFlag = YesOrNoEnum.NO;
|
|
@@ -27,4 +30,12 @@ public class SubjectQueryInfo extends QueryInfo {
|
|
public void setParentId(Long parentId) {
|
|
public void setParentId(Long parentId) {
|
|
this.parentId = parentId;
|
|
this.parentId = parentId;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getQueryType() {
|
|
|
|
+ return queryType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setQueryType(String queryType) {
|
|
|
|
+ this.queryType = queryType;
|
|
|
|
+ }
|
|
}
|
|
}
|