Commit 86e0d98f authored by yanzg's avatar yanzg

压缩视频

parent 621a14bb
......@@ -11,6 +11,17 @@ import io.swagger.annotations.ApiModelProperty;
@ApiModel(description = "查询参数")
public class QueryPara {
/**
* 查询删除
*/
public static QueryPara LOAD_REMOVE = new QueryPara(false, true);
/**
* 所有条件生效
*/
public static QueryPara FULL_COND = new QueryPara(true, false);
/**
* 所有条件生效
*/
......@@ -23,13 +34,6 @@ public class QueryPara {
@ApiModelProperty(notes = "在数据通过删除标记删除时,可以通过该参数查询出来")
private boolean loadRemove;
public QueryPara() {
}
public QueryPara(boolean fullCond) {
this.fullCond = fullCond;
}
public QueryPara(boolean fullCond, boolean loadRemove) {
this.fullCond = fullCond;
this.loadRemove = loadRemove;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment