Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YZG
yzg-util
Commits
86e0d98f
Commit
86e0d98f
authored
Jun 05, 2020
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
压缩视频
parent
621a14bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
QueryPara.java
yzg-util-db/src/main/java/com/yanzuoguang/dao/QueryPara.java
+11
-7
No files found.
yzg-util-db/src/main/java/com/yanzuoguang/dao/QueryPara.java
View file @
86e0d98f
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment