Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
DQMP
Project
Project
Details
Activity
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
data
DQMP
Commits
56b3294d
Commit
56b3294d
authored
Dec 13, 2019
by
赵建伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add sql format codes
parent
2caf2fc6
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
3927 additions
and
0 deletions
+3927
-0
TblIndicatorOperatorInfo.java
...a/com/gmei/data/dqmp/domain/TblIndicatorOperatorInfo.java
+44
-0
TblIndicatorOperatorInfoCriteria.java
...ei/data/dqmp/domain/TblIndicatorOperatorInfoCriteria.java
+471
-0
TblRuleDuplexInfo.java
...ain/java/com/gmei/data/dqmp/domain/TblRuleDuplexInfo.java
+124
-0
TblRuleDuplexInfoCriteria.java
.../com/gmei/data/dqmp/domain/TblRuleDuplexInfoCriteria.java
+1011
-0
TblRuleDuplexInfoWithBLOBs.java
...com/gmei/data/dqmp/domain/TblRuleDuplexInfoWithBLOBs.java
+24
-0
TblRuleSimpleInfo.java
...ain/java/com/gmei/data/dqmp/domain/TblRuleSimpleInfo.java
+134
-0
TblRuleSimpleInfoCriteria.java
.../com/gmei/data/dqmp/domain/TblRuleSimpleInfoCriteria.java
+1011
-0
TblIndicatorOperatorInfoMapper.java
...gmei/data/dqmp/mapper/TblIndicatorOperatorInfoMapper.java
+31
-0
TblRuleDuplexInfoMapper.java
...va/com/gmei/data/dqmp/mapper/TblRuleDuplexInfoMapper.java
+38
-0
TblRuleSimpleInfoMapper.java
...va/com/gmei/data/dqmp/mapper/TblRuleSimpleInfoMapper.java
+37
-0
TblIndicatorOperatorInfoMapper.xml
...sources/mybatis/mapper/TblIndicatorOperatorInfoMapper.xml
+197
-0
TblRuleDuplexInfoMapper.xml
...main/resources/mybatis/mapper/TblRuleDuplexInfoMapper.xml
+410
-0
TblRuleSimpleInfoMapper.xml
...main/resources/mybatis/mapper/TblRuleSimpleInfoMapper.xml
+395
-0
No files found.
src/main/java/com/gmei/data/dqmp/domain/TblIndicatorOperatorInfo.java
0 → 100644
View file @
56b3294d
package
com
.
gmei
.
data
.
dqmp
.
domain
;
public
class
TblIndicatorOperatorInfo
{
private
Integer
id
;
private
String
indicatorName
;
private
String
operatorExpr
;
private
String
comment
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
String
getIndicatorName
()
{
return
indicatorName
;
}
public
void
setIndicatorName
(
String
indicatorName
)
{
this
.
indicatorName
=
indicatorName
==
null
?
null
:
indicatorName
.
trim
();
}
public
String
getOperatorExpr
()
{
return
operatorExpr
;
}
public
void
setOperatorExpr
(
String
operatorExpr
)
{
this
.
operatorExpr
=
operatorExpr
==
null
?
null
:
operatorExpr
.
trim
();
}
public
String
getComment
()
{
return
comment
;
}
public
void
setComment
(
String
comment
)
{
this
.
comment
=
comment
==
null
?
null
:
comment
.
trim
();
}
}
\ No newline at end of file
src/main/java/com/gmei/data/dqmp/domain/TblIndicatorOperatorInfoCriteria.java
0 → 100644
View file @
56b3294d
package
com
.
gmei
.
data
.
dqmp
.
domain
;
import
java.util.ArrayList
;
import
java.util.List
;
public
class
TblIndicatorOperatorInfoCriteria
{
protected
String
orderByClause
;
protected
boolean
distinct
;
protected
List
<
Criteria
>
oredCriteria
;
public
TblIndicatorOperatorInfoCriteria
()
{
oredCriteria
=
new
ArrayList
<
Criteria
>();
}
public
void
setOrderByClause
(
String
orderByClause
)
{
this
.
orderByClause
=
orderByClause
;
}
public
String
getOrderByClause
()
{
return
orderByClause
;
}
public
void
setDistinct
(
boolean
distinct
)
{
this
.
distinct
=
distinct
;
}
public
boolean
isDistinct
()
{
return
distinct
;
}
public
List
<
Criteria
>
getOredCriteria
()
{
return
oredCriteria
;
}
public
void
or
(
Criteria
criteria
)
{
oredCriteria
.
add
(
criteria
);
}
public
Criteria
or
()
{
Criteria
criteria
=
createCriteriaInternal
();
oredCriteria
.
add
(
criteria
);
return
criteria
;
}
public
Criteria
createCriteria
()
{
Criteria
criteria
=
createCriteriaInternal
();
if
(
oredCriteria
.
size
()
==
0
)
{
oredCriteria
.
add
(
criteria
);
}
return
criteria
;
}
protected
Criteria
createCriteriaInternal
()
{
Criteria
criteria
=
new
Criteria
();
return
criteria
;
}
public
void
clear
()
{
oredCriteria
.
clear
();
orderByClause
=
null
;
distinct
=
false
;
}
protected
abstract
static
class
GeneratedCriteria
{
protected
List
<
Criterion
>
criteria
;
protected
GeneratedCriteria
()
{
super
();
criteria
=
new
ArrayList
<
Criterion
>();
}
public
boolean
isValid
()
{
return
criteria
.
size
()
>
0
;
}
public
List
<
Criterion
>
getAllCriteria
()
{
return
criteria
;
}
public
List
<
Criterion
>
getCriteria
()
{
return
criteria
;
}
protected
void
addCriterion
(
String
condition
)
{
if
(
condition
==
null
)
{
throw
new
RuntimeException
(
"Value for condition cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
));
}
protected
void
addCriterion
(
String
condition
,
Object
value
,
String
property
)
{
if
(
value
==
null
)
{
throw
new
RuntimeException
(
"Value for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value
));
}
protected
void
addCriterion
(
String
condition
,
Object
value1
,
Object
value2
,
String
property
)
{
if
(
value1
==
null
||
value2
==
null
)
{
throw
new
RuntimeException
(
"Between values for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value1
,
value2
));
}
public
Criteria
andIdIsNull
()
{
addCriterion
(
"id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdIsNotNull
()
{
addCriterion
(
"id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdEqualTo
(
Integer
value
)
{
addCriterion
(
"id ="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotEqualTo
(
Integer
value
)
{
addCriterion
(
"id <>"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThan
(
Integer
value
)
{
addCriterion
(
"id >"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"id >="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThan
(
Integer
value
)
{
addCriterion
(
"id <"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"id <="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"id in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"id not in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"id between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"id not between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameIsNull
()
{
addCriterion
(
"indicator_name is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameIsNotNull
()
{
addCriterion
(
"indicator_name is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameEqualTo
(
String
value
)
{
addCriterion
(
"indicator_name ="
,
value
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameNotEqualTo
(
String
value
)
{
addCriterion
(
"indicator_name <>"
,
value
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameGreaterThan
(
String
value
)
{
addCriterion
(
"indicator_name >"
,
value
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"indicator_name >="
,
value
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameLessThan
(
String
value
)
{
addCriterion
(
"indicator_name <"
,
value
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"indicator_name <="
,
value
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameLike
(
String
value
)
{
addCriterion
(
"indicator_name like"
,
value
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameNotLike
(
String
value
)
{
addCriterion
(
"indicator_name not like"
,
value
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"indicator_name in"
,
values
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"indicator_name not in"
,
values
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"indicator_name between"
,
value1
,
value2
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"indicator_name not between"
,
value1
,
value2
,
"indicatorName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprIsNull
()
{
addCriterion
(
"operator_expr is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprIsNotNull
()
{
addCriterion
(
"operator_expr is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprEqualTo
(
String
value
)
{
addCriterion
(
"operator_expr ="
,
value
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprNotEqualTo
(
String
value
)
{
addCriterion
(
"operator_expr <>"
,
value
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprGreaterThan
(
String
value
)
{
addCriterion
(
"operator_expr >"
,
value
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"operator_expr >="
,
value
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprLessThan
(
String
value
)
{
addCriterion
(
"operator_expr <"
,
value
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"operator_expr <="
,
value
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprLike
(
String
value
)
{
addCriterion
(
"operator_expr like"
,
value
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprNotLike
(
String
value
)
{
addCriterion
(
"operator_expr not like"
,
value
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprIn
(
List
<
String
>
values
)
{
addCriterion
(
"operator_expr in"
,
values
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"operator_expr not in"
,
values
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"operator_expr between"
,
value1
,
value2
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOperatorExprNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"operator_expr not between"
,
value1
,
value2
,
"operatorExpr"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentIsNull
()
{
addCriterion
(
"comment is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentIsNotNull
()
{
addCriterion
(
"comment is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentEqualTo
(
String
value
)
{
addCriterion
(
"comment ="
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotEqualTo
(
String
value
)
{
addCriterion
(
"comment <>"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentGreaterThan
(
String
value
)
{
addCriterion
(
"comment >"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"comment >="
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentLessThan
(
String
value
)
{
addCriterion
(
"comment <"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"comment <="
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentLike
(
String
value
)
{
addCriterion
(
"comment like"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotLike
(
String
value
)
{
addCriterion
(
"comment not like"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentIn
(
List
<
String
>
values
)
{
addCriterion
(
"comment in"
,
values
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"comment not in"
,
values
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"comment between"
,
value1
,
value2
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"comment not between"
,
value1
,
value2
,
"comment"
);
return
(
Criteria
)
this
;
}
}
public
static
class
Criteria
extends
GeneratedCriteria
{
protected
Criteria
()
{
super
();
}
}
public
static
class
Criterion
{
private
String
condition
;
private
Object
value
;
private
Object
secondValue
;
private
boolean
noValue
;
private
boolean
singleValue
;
private
boolean
betweenValue
;
private
boolean
listValue
;
private
String
typeHandler
;
public
String
getCondition
()
{
return
condition
;
}
public
Object
getValue
()
{
return
value
;
}
public
Object
getSecondValue
()
{
return
secondValue
;
}
public
boolean
isNoValue
()
{
return
noValue
;
}
public
boolean
isSingleValue
()
{
return
singleValue
;
}
public
boolean
isBetweenValue
()
{
return
betweenValue
;
}
public
boolean
isListValue
()
{
return
listValue
;
}
public
String
getTypeHandler
()
{
return
typeHandler
;
}
protected
Criterion
(
String
condition
)
{
super
();
this
.
condition
=
condition
;
this
.
typeHandler
=
null
;
this
.
noValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
typeHandler
=
typeHandler
;
if
(
value
instanceof
List
<?>)
{
this
.
listValue
=
true
;
}
else
{
this
.
singleValue
=
true
;
}
}
protected
Criterion
(
String
condition
,
Object
value
)
{
this
(
condition
,
value
,
null
);
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
secondValue
=
secondValue
;
this
.
typeHandler
=
typeHandler
;
this
.
betweenValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
)
{
this
(
condition
,
value
,
secondValue
,
null
);
}
}
}
\ No newline at end of file
src/main/java/com/gmei/data/dqmp/domain/TblRuleDuplexInfo.java
0 → 100644
View file @
56b3294d
package
com
.
gmei
.
data
.
dqmp
.
domain
;
public
class
TblRuleDuplexInfo
{
private
Integer
id
;
private
String
checkType
;
private
String
checkDbName
;
private
String
checkTbName
;
private
String
checkColName
;
private
String
referDbName
;
private
String
referTbName
;
private
String
referColName
;
private
Integer
isPartitioned
;
private
Integer
isValid
;
private
String
checkTime
;
private
String
createTime
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
String
getCheckType
()
{
return
checkType
;
}
public
void
setCheckType
(
String
checkType
)
{
this
.
checkType
=
checkType
==
null
?
null
:
checkType
.
trim
();
}
public
String
getCheckDbName
()
{
return
checkDbName
;
}
public
void
setCheckDbName
(
String
checkDbName
)
{
this
.
checkDbName
=
checkDbName
==
null
?
null
:
checkDbName
.
trim
();
}
public
String
getCheckTbName
()
{
return
checkTbName
;
}
public
void
setCheckTbName
(
String
checkTbName
)
{
this
.
checkTbName
=
checkTbName
==
null
?
null
:
checkTbName
.
trim
();
}
public
String
getCheckColName
()
{
return
checkColName
;
}
public
void
setCheckColName
(
String
checkColName
)
{
this
.
checkColName
=
checkColName
==
null
?
null
:
checkColName
.
trim
();
}
public
String
getReferDbName
()
{
return
referDbName
;
}
public
void
setReferDbName
(
String
referDbName
)
{
this
.
referDbName
=
referDbName
==
null
?
null
:
referDbName
.
trim
();
}
public
String
getReferTbName
()
{
return
referTbName
;
}
public
void
setReferTbName
(
String
referTbName
)
{
this
.
referTbName
=
referTbName
==
null
?
null
:
referTbName
.
trim
();
}
public
String
getReferColName
()
{
return
referColName
;
}
public
void
setReferColName
(
String
referColName
)
{
this
.
referColName
=
referColName
==
null
?
null
:
referColName
.
trim
();
}
public
Integer
getIsPartitioned
()
{
return
isPartitioned
;
}
public
void
setIsPartitioned
(
Integer
isPartitioned
)
{
this
.
isPartitioned
=
isPartitioned
;
}
public
Integer
getIsValid
()
{
return
isValid
;
}
public
void
setIsValid
(
Integer
isValid
)
{
this
.
isValid
=
isValid
;
}
public
String
getCheckTime
()
{
return
checkTime
;
}
public
void
setCheckTime
(
String
checkTime
)
{
this
.
checkTime
=
checkTime
==
null
?
null
:
checkTime
.
trim
();
}
public
String
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
String
createTime
)
{
this
.
createTime
=
createTime
==
null
?
null
:
createTime
.
trim
();
}
}
\ No newline at end of file
src/main/java/com/gmei/data/dqmp/domain/TblRuleDuplexInfoCriteria.java
0 → 100644
View file @
56b3294d
package
com
.
gmei
.
data
.
dqmp
.
domain
;
import
java.util.ArrayList
;
import
java.util.List
;
public
class
TblRuleDuplexInfoCriteria
{
protected
String
orderByClause
;
protected
boolean
distinct
;
protected
List
<
Criteria
>
oredCriteria
;
public
TblRuleDuplexInfoCriteria
()
{
oredCriteria
=
new
ArrayList
<
Criteria
>();
}
public
void
setOrderByClause
(
String
orderByClause
)
{
this
.
orderByClause
=
orderByClause
;
}
public
String
getOrderByClause
()
{
return
orderByClause
;
}
public
void
setDistinct
(
boolean
distinct
)
{
this
.
distinct
=
distinct
;
}
public
boolean
isDistinct
()
{
return
distinct
;
}
public
List
<
Criteria
>
getOredCriteria
()
{
return
oredCriteria
;
}
public
void
or
(
Criteria
criteria
)
{
oredCriteria
.
add
(
criteria
);
}
public
Criteria
or
()
{
Criteria
criteria
=
createCriteriaInternal
();
oredCriteria
.
add
(
criteria
);
return
criteria
;
}
public
Criteria
createCriteria
()
{
Criteria
criteria
=
createCriteriaInternal
();
if
(
oredCriteria
.
size
()
==
0
)
{
oredCriteria
.
add
(
criteria
);
}
return
criteria
;
}
protected
Criteria
createCriteriaInternal
()
{
Criteria
criteria
=
new
Criteria
();
return
criteria
;
}
public
void
clear
()
{
oredCriteria
.
clear
();
orderByClause
=
null
;
distinct
=
false
;
}
protected
abstract
static
class
GeneratedCriteria
{
protected
List
<
Criterion
>
criteria
;
protected
GeneratedCriteria
()
{
super
();
criteria
=
new
ArrayList
<
Criterion
>();
}
public
boolean
isValid
()
{
return
criteria
.
size
()
>
0
;
}
public
List
<
Criterion
>
getAllCriteria
()
{
return
criteria
;
}
public
List
<
Criterion
>
getCriteria
()
{
return
criteria
;
}
protected
void
addCriterion
(
String
condition
)
{
if
(
condition
==
null
)
{
throw
new
RuntimeException
(
"Value for condition cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
));
}
protected
void
addCriterion
(
String
condition
,
Object
value
,
String
property
)
{
if
(
value
==
null
)
{
throw
new
RuntimeException
(
"Value for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value
));
}
protected
void
addCriterion
(
String
condition
,
Object
value1
,
Object
value2
,
String
property
)
{
if
(
value1
==
null
||
value2
==
null
)
{
throw
new
RuntimeException
(
"Between values for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value1
,
value2
));
}
public
Criteria
andIdIsNull
()
{
addCriterion
(
"id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdIsNotNull
()
{
addCriterion
(
"id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdEqualTo
(
Integer
value
)
{
addCriterion
(
"id ="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotEqualTo
(
Integer
value
)
{
addCriterion
(
"id <>"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThan
(
Integer
value
)
{
addCriterion
(
"id >"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"id >="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThan
(
Integer
value
)
{
addCriterion
(
"id <"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"id <="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"id in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"id not in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"id between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"id not between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeIsNull
()
{
addCriterion
(
"check_type is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeIsNotNull
()
{
addCriterion
(
"check_type is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeEqualTo
(
String
value
)
{
addCriterion
(
"check_type ="
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeNotEqualTo
(
String
value
)
{
addCriterion
(
"check_type <>"
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeGreaterThan
(
String
value
)
{
addCriterion
(
"check_type >"
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_type >="
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeLessThan
(
String
value
)
{
addCriterion
(
"check_type <"
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_type <="
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeLike
(
String
value
)
{
addCriterion
(
"check_type like"
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeNotLike
(
String
value
)
{
addCriterion
(
"check_type not like"
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_type in"
,
values
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_type not in"
,
values
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_type between"
,
value1
,
value2
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_type not between"
,
value1
,
value2
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameIsNull
()
{
addCriterion
(
"check_db_name is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameIsNotNull
()
{
addCriterion
(
"check_db_name is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameEqualTo
(
String
value
)
{
addCriterion
(
"check_db_name ="
,
value
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameNotEqualTo
(
String
value
)
{
addCriterion
(
"check_db_name <>"
,
value
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameGreaterThan
(
String
value
)
{
addCriterion
(
"check_db_name >"
,
value
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_db_name >="
,
value
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameLessThan
(
String
value
)
{
addCriterion
(
"check_db_name <"
,
value
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_db_name <="
,
value
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameLike
(
String
value
)
{
addCriterion
(
"check_db_name like"
,
value
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameNotLike
(
String
value
)
{
addCriterion
(
"check_db_name not like"
,
value
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_db_name in"
,
values
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_db_name not in"
,
values
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_db_name between"
,
value1
,
value2
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckDbNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_db_name not between"
,
value1
,
value2
,
"checkDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameIsNull
()
{
addCriterion
(
"check_tb_name is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameIsNotNull
()
{
addCriterion
(
"check_tb_name is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameEqualTo
(
String
value
)
{
addCriterion
(
"check_tb_name ="
,
value
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameNotEqualTo
(
String
value
)
{
addCriterion
(
"check_tb_name <>"
,
value
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameGreaterThan
(
String
value
)
{
addCriterion
(
"check_tb_name >"
,
value
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_tb_name >="
,
value
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameLessThan
(
String
value
)
{
addCriterion
(
"check_tb_name <"
,
value
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_tb_name <="
,
value
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameLike
(
String
value
)
{
addCriterion
(
"check_tb_name like"
,
value
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameNotLike
(
String
value
)
{
addCriterion
(
"check_tb_name not like"
,
value
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_tb_name in"
,
values
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_tb_name not in"
,
values
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_tb_name between"
,
value1
,
value2
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTbNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_tb_name not between"
,
value1
,
value2
,
"checkTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameIsNull
()
{
addCriterion
(
"check_col_name is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameIsNotNull
()
{
addCriterion
(
"check_col_name is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameEqualTo
(
String
value
)
{
addCriterion
(
"check_col_name ="
,
value
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameNotEqualTo
(
String
value
)
{
addCriterion
(
"check_col_name <>"
,
value
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameGreaterThan
(
String
value
)
{
addCriterion
(
"check_col_name >"
,
value
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_col_name >="
,
value
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameLessThan
(
String
value
)
{
addCriterion
(
"check_col_name <"
,
value
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_col_name <="
,
value
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameLike
(
String
value
)
{
addCriterion
(
"check_col_name like"
,
value
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameNotLike
(
String
value
)
{
addCriterion
(
"check_col_name not like"
,
value
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_col_name in"
,
values
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_col_name not in"
,
values
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_col_name between"
,
value1
,
value2
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckColNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_col_name not between"
,
value1
,
value2
,
"checkColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameIsNull
()
{
addCriterion
(
"refer_db_name is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameIsNotNull
()
{
addCriterion
(
"refer_db_name is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameEqualTo
(
String
value
)
{
addCriterion
(
"refer_db_name ="
,
value
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameNotEqualTo
(
String
value
)
{
addCriterion
(
"refer_db_name <>"
,
value
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameGreaterThan
(
String
value
)
{
addCriterion
(
"refer_db_name >"
,
value
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"refer_db_name >="
,
value
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameLessThan
(
String
value
)
{
addCriterion
(
"refer_db_name <"
,
value
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"refer_db_name <="
,
value
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameLike
(
String
value
)
{
addCriterion
(
"refer_db_name like"
,
value
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameNotLike
(
String
value
)
{
addCriterion
(
"refer_db_name not like"
,
value
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"refer_db_name in"
,
values
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"refer_db_name not in"
,
values
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"refer_db_name between"
,
value1
,
value2
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferDbNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"refer_db_name not between"
,
value1
,
value2
,
"referDbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameIsNull
()
{
addCriterion
(
"refer_tb_name is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameIsNotNull
()
{
addCriterion
(
"refer_tb_name is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameEqualTo
(
String
value
)
{
addCriterion
(
"refer_tb_name ="
,
value
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameNotEqualTo
(
String
value
)
{
addCriterion
(
"refer_tb_name <>"
,
value
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameGreaterThan
(
String
value
)
{
addCriterion
(
"refer_tb_name >"
,
value
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"refer_tb_name >="
,
value
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameLessThan
(
String
value
)
{
addCriterion
(
"refer_tb_name <"
,
value
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"refer_tb_name <="
,
value
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameLike
(
String
value
)
{
addCriterion
(
"refer_tb_name like"
,
value
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameNotLike
(
String
value
)
{
addCriterion
(
"refer_tb_name not like"
,
value
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"refer_tb_name in"
,
values
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"refer_tb_name not in"
,
values
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"refer_tb_name between"
,
value1
,
value2
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferTbNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"refer_tb_name not between"
,
value1
,
value2
,
"referTbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameIsNull
()
{
addCriterion
(
"refer_col_name is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameIsNotNull
()
{
addCriterion
(
"refer_col_name is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameEqualTo
(
String
value
)
{
addCriterion
(
"refer_col_name ="
,
value
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameNotEqualTo
(
String
value
)
{
addCriterion
(
"refer_col_name <>"
,
value
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameGreaterThan
(
String
value
)
{
addCriterion
(
"refer_col_name >"
,
value
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"refer_col_name >="
,
value
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameLessThan
(
String
value
)
{
addCriterion
(
"refer_col_name <"
,
value
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"refer_col_name <="
,
value
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameLike
(
String
value
)
{
addCriterion
(
"refer_col_name like"
,
value
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameNotLike
(
String
value
)
{
addCriterion
(
"refer_col_name not like"
,
value
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"refer_col_name in"
,
values
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"refer_col_name not in"
,
values
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"refer_col_name between"
,
value1
,
value2
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andReferColNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"refer_col_name not between"
,
value1
,
value2
,
"referColName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedIsNull
()
{
addCriterion
(
"is_partitioned is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedIsNotNull
()
{
addCriterion
(
"is_partitioned is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedEqualTo
(
Integer
value
)
{
addCriterion
(
"is_partitioned ="
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedNotEqualTo
(
Integer
value
)
{
addCriterion
(
"is_partitioned <>"
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedGreaterThan
(
Integer
value
)
{
addCriterion
(
"is_partitioned >"
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"is_partitioned >="
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedLessThan
(
Integer
value
)
{
addCriterion
(
"is_partitioned <"
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"is_partitioned <="
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"is_partitioned in"
,
values
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"is_partitioned not in"
,
values
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"is_partitioned between"
,
value1
,
value2
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"is_partitioned not between"
,
value1
,
value2
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidIsNull
()
{
addCriterion
(
"is_valid is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidIsNotNull
()
{
addCriterion
(
"is_valid is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidEqualTo
(
Integer
value
)
{
addCriterion
(
"is_valid ="
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidNotEqualTo
(
Integer
value
)
{
addCriterion
(
"is_valid <>"
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidGreaterThan
(
Integer
value
)
{
addCriterion
(
"is_valid >"
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"is_valid >="
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidLessThan
(
Integer
value
)
{
addCriterion
(
"is_valid <"
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"is_valid <="
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"is_valid in"
,
values
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"is_valid not in"
,
values
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"is_valid between"
,
value1
,
value2
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"is_valid not between"
,
value1
,
value2
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeIsNull
()
{
addCriterion
(
"check_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeIsNotNull
()
{
addCriterion
(
"check_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeEqualTo
(
String
value
)
{
addCriterion
(
"check_time ="
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeNotEqualTo
(
String
value
)
{
addCriterion
(
"check_time <>"
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeGreaterThan
(
String
value
)
{
addCriterion
(
"check_time >"
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_time >="
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeLessThan
(
String
value
)
{
addCriterion
(
"check_time <"
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_time <="
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeLike
(
String
value
)
{
addCriterion
(
"check_time like"
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeNotLike
(
String
value
)
{
addCriterion
(
"check_time not like"
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_time in"
,
values
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_time not in"
,
values
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_time between"
,
value1
,
value2
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_time not between"
,
value1
,
value2
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIsNull
()
{
addCriterion
(
"create_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIsNotNull
()
{
addCriterion
(
"create_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeEqualTo
(
String
value
)
{
addCriterion
(
"create_time ="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotEqualTo
(
String
value
)
{
addCriterion
(
"create_time <>"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeGreaterThan
(
String
value
)
{
addCriterion
(
"create_time >"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"create_time >="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLessThan
(
String
value
)
{
addCriterion
(
"create_time <"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"create_time <="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLike
(
String
value
)
{
addCriterion
(
"create_time like"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotLike
(
String
value
)
{
addCriterion
(
"create_time not like"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIn
(
List
<
String
>
values
)
{
addCriterion
(
"create_time in"
,
values
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"create_time not in"
,
values
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"create_time between"
,
value1
,
value2
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"create_time not between"
,
value1
,
value2
,
"createTime"
);
return
(
Criteria
)
this
;
}
}
public
static
class
Criteria
extends
GeneratedCriteria
{
protected
Criteria
()
{
super
();
}
}
public
static
class
Criterion
{
private
String
condition
;
private
Object
value
;
private
Object
secondValue
;
private
boolean
noValue
;
private
boolean
singleValue
;
private
boolean
betweenValue
;
private
boolean
listValue
;
private
String
typeHandler
;
public
String
getCondition
()
{
return
condition
;
}
public
Object
getValue
()
{
return
value
;
}
public
Object
getSecondValue
()
{
return
secondValue
;
}
public
boolean
isNoValue
()
{
return
noValue
;
}
public
boolean
isSingleValue
()
{
return
singleValue
;
}
public
boolean
isBetweenValue
()
{
return
betweenValue
;
}
public
boolean
isListValue
()
{
return
listValue
;
}
public
String
getTypeHandler
()
{
return
typeHandler
;
}
protected
Criterion
(
String
condition
)
{
super
();
this
.
condition
=
condition
;
this
.
typeHandler
=
null
;
this
.
noValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
typeHandler
=
typeHandler
;
if
(
value
instanceof
List
<?>)
{
this
.
listValue
=
true
;
}
else
{
this
.
singleValue
=
true
;
}
}
protected
Criterion
(
String
condition
,
Object
value
)
{
this
(
condition
,
value
,
null
);
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
secondValue
=
secondValue
;
this
.
typeHandler
=
typeHandler
;
this
.
betweenValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
)
{
this
(
condition
,
value
,
secondValue
,
null
);
}
}
}
\ No newline at end of file
src/main/java/com/gmei/data/dqmp/domain/TblRuleDuplexInfoWithBLOBs.java
0 → 100644
View file @
56b3294d
package
com
.
gmei
.
data
.
dqmp
.
domain
;
public
class
TblRuleDuplexInfoWithBLOBs
extends
TblRuleDuplexInfo
{
private
String
checkFilters
;
private
String
referFilters
;
public
String
getCheckFilters
()
{
return
checkFilters
;
}
public
void
setCheckFilters
(
String
checkFilters
)
{
this
.
checkFilters
=
checkFilters
==
null
?
null
:
checkFilters
.
trim
();
}
public
String
getReferFilters
()
{
return
referFilters
;
}
public
void
setReferFilters
(
String
referFilters
)
{
this
.
referFilters
=
referFilters
==
null
?
null
:
referFilters
.
trim
();
}
}
\ No newline at end of file
src/main/java/com/gmei/data/dqmp/domain/TblRuleSimpleInfo.java
0 → 100644
View file @
56b3294d
package
com
.
gmei
.
data
.
dqmp
.
domain
;
public
class
TblRuleSimpleInfo
{
private
Integer
id
;
private
String
checkType
;
private
String
dbName
;
private
String
tbName
;
private
String
colName
;
private
String
indicatorType
;
private
String
startTime
;
private
String
endTime
;
private
Integer
isPartitioned
;
private
Integer
isValid
;
private
String
checkTime
;
private
String
createTime
;
private
String
filters
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
String
getCheckType
()
{
return
checkType
;
}
public
void
setCheckType
(
String
checkType
)
{
this
.
checkType
=
checkType
==
null
?
null
:
checkType
.
trim
();
}
public
String
getDbName
()
{
return
dbName
;
}
public
void
setDbName
(
String
dbName
)
{
this
.
dbName
=
dbName
==
null
?
null
:
dbName
.
trim
();
}
public
String
getTbName
()
{
return
tbName
;
}
public
void
setTbName
(
String
tbName
)
{
this
.
tbName
=
tbName
==
null
?
null
:
tbName
.
trim
();
}
public
String
getColName
()
{
return
colName
;
}
public
void
setColName
(
String
colName
)
{
this
.
colName
=
colName
==
null
?
null
:
colName
.
trim
();
}
public
String
getIndicatorType
()
{
return
indicatorType
;
}
public
void
setIndicatorType
(
String
indicatorType
)
{
this
.
indicatorType
=
indicatorType
==
null
?
null
:
indicatorType
.
trim
();
}
public
String
getStartTime
()
{
return
startTime
;
}
public
void
setStartTime
(
String
startTime
)
{
this
.
startTime
=
startTime
==
null
?
null
:
startTime
.
trim
();
}
public
String
getEndTime
()
{
return
endTime
;
}
public
void
setEndTime
(
String
endTime
)
{
this
.
endTime
=
endTime
==
null
?
null
:
endTime
.
trim
();
}
public
Integer
getIsPartitioned
()
{
return
isPartitioned
;
}
public
void
setIsPartitioned
(
Integer
isPartitioned
)
{
this
.
isPartitioned
=
isPartitioned
;
}
public
Integer
getIsValid
()
{
return
isValid
;
}
public
void
setIsValid
(
Integer
isValid
)
{
this
.
isValid
=
isValid
;
}
public
String
getCheckTime
()
{
return
checkTime
;
}
public
void
setCheckTime
(
String
checkTime
)
{
this
.
checkTime
=
checkTime
==
null
?
null
:
checkTime
.
trim
();
}
public
String
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
String
createTime
)
{
this
.
createTime
=
createTime
==
null
?
null
:
createTime
.
trim
();
}
public
String
getFilters
()
{
return
filters
;
}
public
void
setFilters
(
String
filters
)
{
this
.
filters
=
filters
==
null
?
null
:
filters
.
trim
();
}
}
\ No newline at end of file
src/main/java/com/gmei/data/dqmp/domain/TblRuleSimpleInfoCriteria.java
0 → 100644
View file @
56b3294d
package
com
.
gmei
.
data
.
dqmp
.
domain
;
import
java.util.ArrayList
;
import
java.util.List
;
public
class
TblRuleSimpleInfoCriteria
{
protected
String
orderByClause
;
protected
boolean
distinct
;
protected
List
<
Criteria
>
oredCriteria
;
public
TblRuleSimpleInfoCriteria
()
{
oredCriteria
=
new
ArrayList
<
Criteria
>();
}
public
void
setOrderByClause
(
String
orderByClause
)
{
this
.
orderByClause
=
orderByClause
;
}
public
String
getOrderByClause
()
{
return
orderByClause
;
}
public
void
setDistinct
(
boolean
distinct
)
{
this
.
distinct
=
distinct
;
}
public
boolean
isDistinct
()
{
return
distinct
;
}
public
List
<
Criteria
>
getOredCriteria
()
{
return
oredCriteria
;
}
public
void
or
(
Criteria
criteria
)
{
oredCriteria
.
add
(
criteria
);
}
public
Criteria
or
()
{
Criteria
criteria
=
createCriteriaInternal
();
oredCriteria
.
add
(
criteria
);
return
criteria
;
}
public
Criteria
createCriteria
()
{
Criteria
criteria
=
createCriteriaInternal
();
if
(
oredCriteria
.
size
()
==
0
)
{
oredCriteria
.
add
(
criteria
);
}
return
criteria
;
}
protected
Criteria
createCriteriaInternal
()
{
Criteria
criteria
=
new
Criteria
();
return
criteria
;
}
public
void
clear
()
{
oredCriteria
.
clear
();
orderByClause
=
null
;
distinct
=
false
;
}
protected
abstract
static
class
GeneratedCriteria
{
protected
List
<
Criterion
>
criteria
;
protected
GeneratedCriteria
()
{
super
();
criteria
=
new
ArrayList
<
Criterion
>();
}
public
boolean
isValid
()
{
return
criteria
.
size
()
>
0
;
}
public
List
<
Criterion
>
getAllCriteria
()
{
return
criteria
;
}
public
List
<
Criterion
>
getCriteria
()
{
return
criteria
;
}
protected
void
addCriterion
(
String
condition
)
{
if
(
condition
==
null
)
{
throw
new
RuntimeException
(
"Value for condition cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
));
}
protected
void
addCriterion
(
String
condition
,
Object
value
,
String
property
)
{
if
(
value
==
null
)
{
throw
new
RuntimeException
(
"Value for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value
));
}
protected
void
addCriterion
(
String
condition
,
Object
value1
,
Object
value2
,
String
property
)
{
if
(
value1
==
null
||
value2
==
null
)
{
throw
new
RuntimeException
(
"Between values for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value1
,
value2
));
}
public
Criteria
andIdIsNull
()
{
addCriterion
(
"id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdIsNotNull
()
{
addCriterion
(
"id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdEqualTo
(
Integer
value
)
{
addCriterion
(
"id ="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotEqualTo
(
Integer
value
)
{
addCriterion
(
"id <>"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThan
(
Integer
value
)
{
addCriterion
(
"id >"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"id >="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThan
(
Integer
value
)
{
addCriterion
(
"id <"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"id <="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"id in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"id not in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"id between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"id not between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeIsNull
()
{
addCriterion
(
"check_type is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeIsNotNull
()
{
addCriterion
(
"check_type is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeEqualTo
(
String
value
)
{
addCriterion
(
"check_type ="
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeNotEqualTo
(
String
value
)
{
addCriterion
(
"check_type <>"
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeGreaterThan
(
String
value
)
{
addCriterion
(
"check_type >"
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_type >="
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeLessThan
(
String
value
)
{
addCriterion
(
"check_type <"
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_type <="
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeLike
(
String
value
)
{
addCriterion
(
"check_type like"
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeNotLike
(
String
value
)
{
addCriterion
(
"check_type not like"
,
value
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_type in"
,
values
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_type not in"
,
values
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_type between"
,
value1
,
value2
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTypeNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_type not between"
,
value1
,
value2
,
"checkType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameIsNull
()
{
addCriterion
(
"db_name is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameIsNotNull
()
{
addCriterion
(
"db_name is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameEqualTo
(
String
value
)
{
addCriterion
(
"db_name ="
,
value
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameNotEqualTo
(
String
value
)
{
addCriterion
(
"db_name <>"
,
value
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameGreaterThan
(
String
value
)
{
addCriterion
(
"db_name >"
,
value
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"db_name >="
,
value
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameLessThan
(
String
value
)
{
addCriterion
(
"db_name <"
,
value
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"db_name <="
,
value
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameLike
(
String
value
)
{
addCriterion
(
"db_name like"
,
value
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameNotLike
(
String
value
)
{
addCriterion
(
"db_name not like"
,
value
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"db_name in"
,
values
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"db_name not in"
,
values
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"db_name between"
,
value1
,
value2
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDbNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"db_name not between"
,
value1
,
value2
,
"dbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameIsNull
()
{
addCriterion
(
"tb_name is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameIsNotNull
()
{
addCriterion
(
"tb_name is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameEqualTo
(
String
value
)
{
addCriterion
(
"tb_name ="
,
value
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameNotEqualTo
(
String
value
)
{
addCriterion
(
"tb_name <>"
,
value
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameGreaterThan
(
String
value
)
{
addCriterion
(
"tb_name >"
,
value
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"tb_name >="
,
value
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameLessThan
(
String
value
)
{
addCriterion
(
"tb_name <"
,
value
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"tb_name <="
,
value
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameLike
(
String
value
)
{
addCriterion
(
"tb_name like"
,
value
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameNotLike
(
String
value
)
{
addCriterion
(
"tb_name not like"
,
value
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"tb_name in"
,
values
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"tb_name not in"
,
values
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"tb_name between"
,
value1
,
value2
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTbNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"tb_name not between"
,
value1
,
value2
,
"tbName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameIsNull
()
{
addCriterion
(
"col_name is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameIsNotNull
()
{
addCriterion
(
"col_name is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameEqualTo
(
String
value
)
{
addCriterion
(
"col_name ="
,
value
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameNotEqualTo
(
String
value
)
{
addCriterion
(
"col_name <>"
,
value
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameGreaterThan
(
String
value
)
{
addCriterion
(
"col_name >"
,
value
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"col_name >="
,
value
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameLessThan
(
String
value
)
{
addCriterion
(
"col_name <"
,
value
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"col_name <="
,
value
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameLike
(
String
value
)
{
addCriterion
(
"col_name like"
,
value
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameNotLike
(
String
value
)
{
addCriterion
(
"col_name not like"
,
value
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"col_name in"
,
values
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"col_name not in"
,
values
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"col_name between"
,
value1
,
value2
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andColNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"col_name not between"
,
value1
,
value2
,
"colName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeIsNull
()
{
addCriterion
(
"indicator_type is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeIsNotNull
()
{
addCriterion
(
"indicator_type is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeEqualTo
(
String
value
)
{
addCriterion
(
"indicator_type ="
,
value
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeNotEqualTo
(
String
value
)
{
addCriterion
(
"indicator_type <>"
,
value
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeGreaterThan
(
String
value
)
{
addCriterion
(
"indicator_type >"
,
value
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"indicator_type >="
,
value
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeLessThan
(
String
value
)
{
addCriterion
(
"indicator_type <"
,
value
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"indicator_type <="
,
value
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeLike
(
String
value
)
{
addCriterion
(
"indicator_type like"
,
value
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeNotLike
(
String
value
)
{
addCriterion
(
"indicator_type not like"
,
value
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeIn
(
List
<
String
>
values
)
{
addCriterion
(
"indicator_type in"
,
values
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"indicator_type not in"
,
values
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"indicator_type between"
,
value1
,
value2
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIndicatorTypeNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"indicator_type not between"
,
value1
,
value2
,
"indicatorType"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeIsNull
()
{
addCriterion
(
"start_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeIsNotNull
()
{
addCriterion
(
"start_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeEqualTo
(
String
value
)
{
addCriterion
(
"start_time ="
,
value
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeNotEqualTo
(
String
value
)
{
addCriterion
(
"start_time <>"
,
value
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeGreaterThan
(
String
value
)
{
addCriterion
(
"start_time >"
,
value
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"start_time >="
,
value
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeLessThan
(
String
value
)
{
addCriterion
(
"start_time <"
,
value
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"start_time <="
,
value
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeLike
(
String
value
)
{
addCriterion
(
"start_time like"
,
value
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeNotLike
(
String
value
)
{
addCriterion
(
"start_time not like"
,
value
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeIn
(
List
<
String
>
values
)
{
addCriterion
(
"start_time in"
,
values
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"start_time not in"
,
values
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"start_time between"
,
value1
,
value2
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStartTimeNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"start_time not between"
,
value1
,
value2
,
"startTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeIsNull
()
{
addCriterion
(
"end_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeIsNotNull
()
{
addCriterion
(
"end_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeEqualTo
(
String
value
)
{
addCriterion
(
"end_time ="
,
value
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeNotEqualTo
(
String
value
)
{
addCriterion
(
"end_time <>"
,
value
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeGreaterThan
(
String
value
)
{
addCriterion
(
"end_time >"
,
value
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"end_time >="
,
value
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeLessThan
(
String
value
)
{
addCriterion
(
"end_time <"
,
value
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"end_time <="
,
value
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeLike
(
String
value
)
{
addCriterion
(
"end_time like"
,
value
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeNotLike
(
String
value
)
{
addCriterion
(
"end_time not like"
,
value
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeIn
(
List
<
String
>
values
)
{
addCriterion
(
"end_time in"
,
values
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"end_time not in"
,
values
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"end_time between"
,
value1
,
value2
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEndTimeNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"end_time not between"
,
value1
,
value2
,
"endTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedIsNull
()
{
addCriterion
(
"is_partitioned is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedIsNotNull
()
{
addCriterion
(
"is_partitioned is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedEqualTo
(
Integer
value
)
{
addCriterion
(
"is_partitioned ="
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedNotEqualTo
(
Integer
value
)
{
addCriterion
(
"is_partitioned <>"
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedGreaterThan
(
Integer
value
)
{
addCriterion
(
"is_partitioned >"
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"is_partitioned >="
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedLessThan
(
Integer
value
)
{
addCriterion
(
"is_partitioned <"
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"is_partitioned <="
,
value
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"is_partitioned in"
,
values
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"is_partitioned not in"
,
values
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"is_partitioned between"
,
value1
,
value2
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsPartitionedNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"is_partitioned not between"
,
value1
,
value2
,
"isPartitioned"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidIsNull
()
{
addCriterion
(
"is_valid is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidIsNotNull
()
{
addCriterion
(
"is_valid is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidEqualTo
(
Integer
value
)
{
addCriterion
(
"is_valid ="
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidNotEqualTo
(
Integer
value
)
{
addCriterion
(
"is_valid <>"
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidGreaterThan
(
Integer
value
)
{
addCriterion
(
"is_valid >"
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"is_valid >="
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidLessThan
(
Integer
value
)
{
addCriterion
(
"is_valid <"
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"is_valid <="
,
value
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"is_valid in"
,
values
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"is_valid not in"
,
values
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"is_valid between"
,
value1
,
value2
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsValidNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"is_valid not between"
,
value1
,
value2
,
"isValid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeIsNull
()
{
addCriterion
(
"check_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeIsNotNull
()
{
addCriterion
(
"check_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeEqualTo
(
String
value
)
{
addCriterion
(
"check_time ="
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeNotEqualTo
(
String
value
)
{
addCriterion
(
"check_time <>"
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeGreaterThan
(
String
value
)
{
addCriterion
(
"check_time >"
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_time >="
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeLessThan
(
String
value
)
{
addCriterion
(
"check_time <"
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"check_time <="
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeLike
(
String
value
)
{
addCriterion
(
"check_time like"
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeNotLike
(
String
value
)
{
addCriterion
(
"check_time not like"
,
value
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_time in"
,
values
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"check_time not in"
,
values
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_time between"
,
value1
,
value2
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCheckTimeNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"check_time not between"
,
value1
,
value2
,
"checkTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIsNull
()
{
addCriterion
(
"create_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIsNotNull
()
{
addCriterion
(
"create_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeEqualTo
(
String
value
)
{
addCriterion
(
"create_time ="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotEqualTo
(
String
value
)
{
addCriterion
(
"create_time <>"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeGreaterThan
(
String
value
)
{
addCriterion
(
"create_time >"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"create_time >="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLessThan
(
String
value
)
{
addCriterion
(
"create_time <"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"create_time <="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLike
(
String
value
)
{
addCriterion
(
"create_time like"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotLike
(
String
value
)
{
addCriterion
(
"create_time not like"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIn
(
List
<
String
>
values
)
{
addCriterion
(
"create_time in"
,
values
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"create_time not in"
,
values
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"create_time between"
,
value1
,
value2
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"create_time not between"
,
value1
,
value2
,
"createTime"
);
return
(
Criteria
)
this
;
}
}
public
static
class
Criteria
extends
GeneratedCriteria
{
protected
Criteria
()
{
super
();
}
}
public
static
class
Criterion
{
private
String
condition
;
private
Object
value
;
private
Object
secondValue
;
private
boolean
noValue
;
private
boolean
singleValue
;
private
boolean
betweenValue
;
private
boolean
listValue
;
private
String
typeHandler
;
public
String
getCondition
()
{
return
condition
;
}
public
Object
getValue
()
{
return
value
;
}
public
Object
getSecondValue
()
{
return
secondValue
;
}
public
boolean
isNoValue
()
{
return
noValue
;
}
public
boolean
isSingleValue
()
{
return
singleValue
;
}
public
boolean
isBetweenValue
()
{
return
betweenValue
;
}
public
boolean
isListValue
()
{
return
listValue
;
}
public
String
getTypeHandler
()
{
return
typeHandler
;
}
protected
Criterion
(
String
condition
)
{
super
();
this
.
condition
=
condition
;
this
.
typeHandler
=
null
;
this
.
noValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
typeHandler
=
typeHandler
;
if
(
value
instanceof
List
<?>)
{
this
.
listValue
=
true
;
}
else
{
this
.
singleValue
=
true
;
}
}
protected
Criterion
(
String
condition
,
Object
value
)
{
this
(
condition
,
value
,
null
);
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
secondValue
=
secondValue
;
this
.
typeHandler
=
typeHandler
;
this
.
betweenValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
)
{
this
(
condition
,
value
,
secondValue
,
null
);
}
}
}
\ No newline at end of file
src/main/java/com/gmei/data/dqmp/mapper/TblIndicatorOperatorInfoMapper.java
0 → 100644
View file @
56b3294d
package
com
.
gmei
.
data
.
dqmp
.
mapper
;
import
com.gmei.data.dqmp.domain.TblIndicatorOperatorInfo
;
import
com.gmei.data.dqmp.domain.TblIndicatorOperatorInfoCriteria
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Param
;
public
interface
TblIndicatorOperatorInfoMapper
{
int
countByExample
(
TblIndicatorOperatorInfoCriteria
example
);
int
deleteByExample
(
TblIndicatorOperatorInfoCriteria
example
);
int
deleteByPrimaryKey
(
Integer
id
);
int
insert
(
TblIndicatorOperatorInfo
record
);
int
insertSelective
(
TblIndicatorOperatorInfo
record
);
List
<
TblIndicatorOperatorInfo
>
selectByExample
(
TblIndicatorOperatorInfoCriteria
example
);
TblIndicatorOperatorInfo
selectByPrimaryKey
(
Integer
id
);
int
updateByExampleSelective
(
@Param
(
"record"
)
TblIndicatorOperatorInfo
record
,
@Param
(
"example"
)
TblIndicatorOperatorInfoCriteria
example
);
int
updateByExample
(
@Param
(
"record"
)
TblIndicatorOperatorInfo
record
,
@Param
(
"example"
)
TblIndicatorOperatorInfoCriteria
example
);
int
updateByPrimaryKeySelective
(
TblIndicatorOperatorInfo
record
);
int
updateByPrimaryKey
(
TblIndicatorOperatorInfo
record
);
}
\ No newline at end of file
src/main/java/com/gmei/data/dqmp/mapper/TblRuleDuplexInfoMapper.java
0 → 100644
View file @
56b3294d
package
com
.
gmei
.
data
.
dqmp
.
mapper
;
import
com.gmei.data.dqmp.domain.TblRuleDuplexInfo
;
import
com.gmei.data.dqmp.domain.TblRuleDuplexInfoCriteria
;
import
com.gmei.data.dqmp.domain.TblRuleDuplexInfoWithBLOBs
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Param
;
public
interface
TblRuleDuplexInfoMapper
{
int
countByExample
(
TblRuleDuplexInfoCriteria
example
);
int
deleteByExample
(
TblRuleDuplexInfoCriteria
example
);
int
deleteByPrimaryKey
(
Integer
id
);
int
insert
(
TblRuleDuplexInfoWithBLOBs
record
);
int
insertSelective
(
TblRuleDuplexInfoWithBLOBs
record
);
List
<
TblRuleDuplexInfoWithBLOBs
>
selectByExampleWithBLOBs
(
TblRuleDuplexInfoCriteria
example
);
List
<
TblRuleDuplexInfo
>
selectByExample
(
TblRuleDuplexInfoCriteria
example
);
TblRuleDuplexInfoWithBLOBs
selectByPrimaryKey
(
Integer
id
);
int
updateByExampleSelective
(
@Param
(
"record"
)
TblRuleDuplexInfoWithBLOBs
record
,
@Param
(
"example"
)
TblRuleDuplexInfoCriteria
example
);
int
updateByExampleWithBLOBs
(
@Param
(
"record"
)
TblRuleDuplexInfoWithBLOBs
record
,
@Param
(
"example"
)
TblRuleDuplexInfoCriteria
example
);
int
updateByExample
(
@Param
(
"record"
)
TblRuleDuplexInfo
record
,
@Param
(
"example"
)
TblRuleDuplexInfoCriteria
example
);
int
updateByPrimaryKeySelective
(
TblRuleDuplexInfoWithBLOBs
record
);
int
updateByPrimaryKeyWithBLOBs
(
TblRuleDuplexInfoWithBLOBs
record
);
int
updateByPrimaryKey
(
TblRuleDuplexInfo
record
);
}
\ No newline at end of file
src/main/java/com/gmei/data/dqmp/mapper/TblRuleSimpleInfoMapper.java
0 → 100644
View file @
56b3294d
package
com
.
gmei
.
data
.
dqmp
.
mapper
;
import
com.gmei.data.dqmp.domain.TblRuleSimpleInfo
;
import
com.gmei.data.dqmp.domain.TblRuleSimpleInfoCriteria
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Param
;
public
interface
TblRuleSimpleInfoMapper
{
int
countByExample
(
TblRuleSimpleInfoCriteria
example
);
int
deleteByExample
(
TblRuleSimpleInfoCriteria
example
);
int
deleteByPrimaryKey
(
Integer
id
);
int
insert
(
TblRuleSimpleInfo
record
);
int
insertSelective
(
TblRuleSimpleInfo
record
);
List
<
TblRuleSimpleInfo
>
selectByExampleWithBLOBs
(
TblRuleSimpleInfoCriteria
example
);
List
<
TblRuleSimpleInfo
>
selectByExample
(
TblRuleSimpleInfoCriteria
example
);
TblRuleSimpleInfo
selectByPrimaryKey
(
Integer
id
);
int
updateByExampleSelective
(
@Param
(
"record"
)
TblRuleSimpleInfo
record
,
@Param
(
"example"
)
TblRuleSimpleInfoCriteria
example
);
int
updateByExampleWithBLOBs
(
@Param
(
"record"
)
TblRuleSimpleInfo
record
,
@Param
(
"example"
)
TblRuleSimpleInfoCriteria
example
);
int
updateByExample
(
@Param
(
"record"
)
TblRuleSimpleInfo
record
,
@Param
(
"example"
)
TblRuleSimpleInfoCriteria
example
);
int
updateByPrimaryKeySelective
(
TblRuleSimpleInfo
record
);
int
updateByPrimaryKeyWithBLOBs
(
TblRuleSimpleInfo
record
);
int
updateByPrimaryKey
(
TblRuleSimpleInfo
record
);
}
\ No newline at end of file
src/main/resources/mybatis/mapper/TblIndicatorOperatorInfoMapper.xml
0 → 100644
View file @
56b3294d
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.gmei.data.dqmp.mapper.TblIndicatorOperatorInfoMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.gmei.data.dqmp.domain.TblIndicatorOperatorInfo"
>
<id
column=
"id"
property=
"id"
jdbcType=
"INTEGER"
/>
<result
column=
"indicator_name"
property=
"indicatorName"
jdbcType=
"VARCHAR"
/>
<result
column=
"operator_expr"
property=
"operatorExpr"
jdbcType=
"VARCHAR"
/>
<result
column=
"comment"
property=
"comment"
jdbcType=
"VARCHAR"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<where
>
<foreach
collection=
"oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
suffix=
")"
prefixOverrides=
"and"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose
>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
collection=
"criterion.value"
item=
"listItem"
open=
"("
close=
")"
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Update_By_Example_Where_Clause"
>
<where
>
<foreach
collection=
"example.oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
suffix=
")"
prefixOverrides=
"and"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose
>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
collection=
"criterion.value"
item=
"listItem"
open=
"("
close=
")"
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Base_Column_List"
>
id, indicator_name, operator_expr, comment
</sql>
<select
id=
"selectByExample"
resultMap=
"BaseResultMap"
parameterType=
"com.gmei.data.dqmp.domain.TblIndicatorOperatorInfoCriteria"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from tbl_indicator_operator_info
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByPrimaryKey"
resultMap=
"BaseResultMap"
parameterType=
"java.lang.Integer"
>
select
<include
refid=
"Base_Column_List"
/>
from tbl_indicator_operator_info
where id = #{id,jdbcType=INTEGER}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Integer"
>
delete from tbl_indicator_operator_info
where id = #{id,jdbcType=INTEGER}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"com.gmei.data.dqmp.domain.TblIndicatorOperatorInfoCriteria"
>
delete from tbl_indicator_operator_info
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"com.gmei.data.dqmp.domain.TblIndicatorOperatorInfo"
>
insert into tbl_indicator_operator_info (id, indicator_name, operator_expr,
comment)
values (#{id,jdbcType=INTEGER}, #{indicatorName,jdbcType=VARCHAR}, #{operatorExpr,jdbcType=VARCHAR},
#{comment,jdbcType=VARCHAR})
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.gmei.data.dqmp.domain.TblIndicatorOperatorInfo"
>
insert into tbl_indicator_operator_info
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"indicatorName != null"
>
indicator_name,
</if>
<if
test=
"operatorExpr != null"
>
operator_expr,
</if>
<if
test=
"comment != null"
>
comment,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"indicatorName != null"
>
#{indicatorName,jdbcType=VARCHAR},
</if>
<if
test=
"operatorExpr != null"
>
#{operatorExpr,jdbcType=VARCHAR},
</if>
<if
test=
"comment != null"
>
#{comment,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"com.gmei.data.dqmp.domain.TblIndicatorOperatorInfoCriteria"
resultType=
"java.lang.Integer"
>
select count(*) from tbl_indicator_operator_info
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
update tbl_indicator_operator_info
<set
>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=INTEGER},
</if>
<if
test=
"record.indicatorName != null"
>
indicator_name = #{record.indicatorName,jdbcType=VARCHAR},
</if>
<if
test=
"record.operatorExpr != null"
>
operator_expr = #{record.operatorExpr,jdbcType=VARCHAR},
</if>
<if
test=
"record.comment != null"
>
comment = #{record.comment,jdbcType=VARCHAR},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
update tbl_indicator_operator_info
set id = #{record.id,jdbcType=INTEGER},
indicator_name = #{record.indicatorName,jdbcType=VARCHAR},
operator_expr = #{record.operatorExpr,jdbcType=VARCHAR},
comment = #{record.comment,jdbcType=VARCHAR}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"com.gmei.data.dqmp.domain.TblIndicatorOperatorInfo"
>
update tbl_indicator_operator_info
<set
>
<if
test=
"indicatorName != null"
>
indicator_name = #{indicatorName,jdbcType=VARCHAR},
</if>
<if
test=
"operatorExpr != null"
>
operator_expr = #{operatorExpr,jdbcType=VARCHAR},
</if>
<if
test=
"comment != null"
>
comment = #{comment,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.gmei.data.dqmp.domain.TblIndicatorOperatorInfo"
>
update tbl_indicator_operator_info
set indicator_name = #{indicatorName,jdbcType=VARCHAR},
operator_expr = #{operatorExpr,jdbcType=VARCHAR},
comment = #{comment,jdbcType=VARCHAR}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
src/main/resources/mybatis/mapper/TblRuleDuplexInfoMapper.xml
0 → 100644
View file @
56b3294d
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.gmei.data.dqmp.mapper.TblRuleDuplexInfoMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.gmei.data.dqmp.domain.TblRuleDuplexInfo"
>
<id
column=
"id"
property=
"id"
jdbcType=
"INTEGER"
/>
<result
column=
"check_type"
property=
"checkType"
jdbcType=
"VARCHAR"
/>
<result
column=
"check_db_name"
property=
"checkDbName"
jdbcType=
"VARCHAR"
/>
<result
column=
"check_tb_name"
property=
"checkTbName"
jdbcType=
"VARCHAR"
/>
<result
column=
"check_col_name"
property=
"checkColName"
jdbcType=
"VARCHAR"
/>
<result
column=
"refer_db_name"
property=
"referDbName"
jdbcType=
"VARCHAR"
/>
<result
column=
"refer_tb_name"
property=
"referTbName"
jdbcType=
"VARCHAR"
/>
<result
column=
"refer_col_name"
property=
"referColName"
jdbcType=
"VARCHAR"
/>
<result
column=
"is_partitioned"
property=
"isPartitioned"
jdbcType=
"INTEGER"
/>
<result
column=
"is_valid"
property=
"isValid"
jdbcType=
"INTEGER"
/>
<result
column=
"check_time"
property=
"checkTime"
jdbcType=
"VARCHAR"
/>
<result
column=
"create_time"
property=
"createTime"
jdbcType=
"VARCHAR"
/>
</resultMap>
<resultMap
id=
"ResultMapWithBLOBs"
type=
"com.gmei.data.dqmp.domain.TblRuleDuplexInfoWithBLOBs"
extends=
"BaseResultMap"
>
<result
column=
"check_filters"
property=
"checkFilters"
jdbcType=
"LONGVARCHAR"
/>
<result
column=
"refer_filters"
property=
"referFilters"
jdbcType=
"LONGVARCHAR"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<where
>
<foreach
collection=
"oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
suffix=
")"
prefixOverrides=
"and"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose
>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
collection=
"criterion.value"
item=
"listItem"
open=
"("
close=
")"
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Update_By_Example_Where_Clause"
>
<where
>
<foreach
collection=
"example.oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
suffix=
")"
prefixOverrides=
"and"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose
>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
collection=
"criterion.value"
item=
"listItem"
open=
"("
close=
")"
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Base_Column_List"
>
id, check_type, check_db_name, check_tb_name, check_col_name, refer_db_name, refer_tb_name,
refer_col_name, is_partitioned, is_valid, check_time, create_time
</sql>
<sql
id=
"Blob_Column_List"
>
check_filters, refer_filters
</sql>
<select
id=
"selectByExampleWithBLOBs"
resultMap=
"ResultMapWithBLOBs"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleDuplexInfoCriteria"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
,
<include
refid=
"Blob_Column_List"
/>
from tbl_rule_duplex_info
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByExample"
resultMap=
"BaseResultMap"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleDuplexInfoCriteria"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from tbl_rule_duplex_info
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByPrimaryKey"
resultMap=
"ResultMapWithBLOBs"
parameterType=
"java.lang.Integer"
>
select
<include
refid=
"Base_Column_List"
/>
,
<include
refid=
"Blob_Column_List"
/>
from tbl_rule_duplex_info
where id = #{id,jdbcType=INTEGER}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Integer"
>
delete from tbl_rule_duplex_info
where id = #{id,jdbcType=INTEGER}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleDuplexInfoCriteria"
>
delete from tbl_rule_duplex_info
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleDuplexInfoWithBLOBs"
>
insert into tbl_rule_duplex_info (id, check_type, check_db_name,
check_tb_name, check_col_name, refer_db_name,
refer_tb_name, refer_col_name, is_partitioned,
is_valid, check_time, create_time,
check_filters, refer_filters)
values (#{id,jdbcType=INTEGER}, #{checkType,jdbcType=VARCHAR}, #{checkDbName,jdbcType=VARCHAR},
#{checkTbName,jdbcType=VARCHAR}, #{checkColName,jdbcType=VARCHAR}, #{referDbName,jdbcType=VARCHAR},
#{referTbName,jdbcType=VARCHAR}, #{referColName,jdbcType=VARCHAR}, #{isPartitioned,jdbcType=INTEGER},
#{isValid,jdbcType=INTEGER}, #{checkTime,jdbcType=VARCHAR}, #{createTime,jdbcType=VARCHAR},
#{checkFilters,jdbcType=LONGVARCHAR}, #{referFilters,jdbcType=LONGVARCHAR})
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleDuplexInfoWithBLOBs"
>
insert into tbl_rule_duplex_info
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"checkType != null"
>
check_type,
</if>
<if
test=
"checkDbName != null"
>
check_db_name,
</if>
<if
test=
"checkTbName != null"
>
check_tb_name,
</if>
<if
test=
"checkColName != null"
>
check_col_name,
</if>
<if
test=
"referDbName != null"
>
refer_db_name,
</if>
<if
test=
"referTbName != null"
>
refer_tb_name,
</if>
<if
test=
"referColName != null"
>
refer_col_name,
</if>
<if
test=
"isPartitioned != null"
>
is_partitioned,
</if>
<if
test=
"isValid != null"
>
is_valid,
</if>
<if
test=
"checkTime != null"
>
check_time,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"checkFilters != null"
>
check_filters,
</if>
<if
test=
"referFilters != null"
>
refer_filters,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"checkType != null"
>
#{checkType,jdbcType=VARCHAR},
</if>
<if
test=
"checkDbName != null"
>
#{checkDbName,jdbcType=VARCHAR},
</if>
<if
test=
"checkTbName != null"
>
#{checkTbName,jdbcType=VARCHAR},
</if>
<if
test=
"checkColName != null"
>
#{checkColName,jdbcType=VARCHAR},
</if>
<if
test=
"referDbName != null"
>
#{referDbName,jdbcType=VARCHAR},
</if>
<if
test=
"referTbName != null"
>
#{referTbName,jdbcType=VARCHAR},
</if>
<if
test=
"referColName != null"
>
#{referColName,jdbcType=VARCHAR},
</if>
<if
test=
"isPartitioned != null"
>
#{isPartitioned,jdbcType=INTEGER},
</if>
<if
test=
"isValid != null"
>
#{isValid,jdbcType=INTEGER},
</if>
<if
test=
"checkTime != null"
>
#{checkTime,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
#{createTime,jdbcType=VARCHAR},
</if>
<if
test=
"checkFilters != null"
>
#{checkFilters,jdbcType=LONGVARCHAR},
</if>
<if
test=
"referFilters != null"
>
#{referFilters,jdbcType=LONGVARCHAR},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleDuplexInfoCriteria"
resultType=
"java.lang.Integer"
>
select count(*) from tbl_rule_duplex_info
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
update tbl_rule_duplex_info
<set
>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=INTEGER},
</if>
<if
test=
"record.checkType != null"
>
check_type = #{record.checkType,jdbcType=VARCHAR},
</if>
<if
test=
"record.checkDbName != null"
>
check_db_name = #{record.checkDbName,jdbcType=VARCHAR},
</if>
<if
test=
"record.checkTbName != null"
>
check_tb_name = #{record.checkTbName,jdbcType=VARCHAR},
</if>
<if
test=
"record.checkColName != null"
>
check_col_name = #{record.checkColName,jdbcType=VARCHAR},
</if>
<if
test=
"record.referDbName != null"
>
refer_db_name = #{record.referDbName,jdbcType=VARCHAR},
</if>
<if
test=
"record.referTbName != null"
>
refer_tb_name = #{record.referTbName,jdbcType=VARCHAR},
</if>
<if
test=
"record.referColName != null"
>
refer_col_name = #{record.referColName,jdbcType=VARCHAR},
</if>
<if
test=
"record.isPartitioned != null"
>
is_partitioned = #{record.isPartitioned,jdbcType=INTEGER},
</if>
<if
test=
"record.isValid != null"
>
is_valid = #{record.isValid,jdbcType=INTEGER},
</if>
<if
test=
"record.checkTime != null"
>
check_time = #{record.checkTime,jdbcType=VARCHAR},
</if>
<if
test=
"record.createTime != null"
>
create_time = #{record.createTime,jdbcType=VARCHAR},
</if>
<if
test=
"record.checkFilters != null"
>
check_filters = #{record.checkFilters,jdbcType=LONGVARCHAR},
</if>
<if
test=
"record.referFilters != null"
>
refer_filters = #{record.referFilters,jdbcType=LONGVARCHAR},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExampleWithBLOBs"
parameterType=
"map"
>
update tbl_rule_duplex_info
set id = #{record.id,jdbcType=INTEGER},
check_type = #{record.checkType,jdbcType=VARCHAR},
check_db_name = #{record.checkDbName,jdbcType=VARCHAR},
check_tb_name = #{record.checkTbName,jdbcType=VARCHAR},
check_col_name = #{record.checkColName,jdbcType=VARCHAR},
refer_db_name = #{record.referDbName,jdbcType=VARCHAR},
refer_tb_name = #{record.referTbName,jdbcType=VARCHAR},
refer_col_name = #{record.referColName,jdbcType=VARCHAR},
is_partitioned = #{record.isPartitioned,jdbcType=INTEGER},
is_valid = #{record.isValid,jdbcType=INTEGER},
check_time = #{record.checkTime,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=VARCHAR},
check_filters = #{record.checkFilters,jdbcType=LONGVARCHAR},
refer_filters = #{record.referFilters,jdbcType=LONGVARCHAR}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
update tbl_rule_duplex_info
set id = #{record.id,jdbcType=INTEGER},
check_type = #{record.checkType,jdbcType=VARCHAR},
check_db_name = #{record.checkDbName,jdbcType=VARCHAR},
check_tb_name = #{record.checkTbName,jdbcType=VARCHAR},
check_col_name = #{record.checkColName,jdbcType=VARCHAR},
refer_db_name = #{record.referDbName,jdbcType=VARCHAR},
refer_tb_name = #{record.referTbName,jdbcType=VARCHAR},
refer_col_name = #{record.referColName,jdbcType=VARCHAR},
is_partitioned = #{record.isPartitioned,jdbcType=INTEGER},
is_valid = #{record.isValid,jdbcType=INTEGER},
check_time = #{record.checkTime,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=VARCHAR}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleDuplexInfoWithBLOBs"
>
update tbl_rule_duplex_info
<set
>
<if
test=
"checkType != null"
>
check_type = #{checkType,jdbcType=VARCHAR},
</if>
<if
test=
"checkDbName != null"
>
check_db_name = #{checkDbName,jdbcType=VARCHAR},
</if>
<if
test=
"checkTbName != null"
>
check_tb_name = #{checkTbName,jdbcType=VARCHAR},
</if>
<if
test=
"checkColName != null"
>
check_col_name = #{checkColName,jdbcType=VARCHAR},
</if>
<if
test=
"referDbName != null"
>
refer_db_name = #{referDbName,jdbcType=VARCHAR},
</if>
<if
test=
"referTbName != null"
>
refer_tb_name = #{referTbName,jdbcType=VARCHAR},
</if>
<if
test=
"referColName != null"
>
refer_col_name = #{referColName,jdbcType=VARCHAR},
</if>
<if
test=
"isPartitioned != null"
>
is_partitioned = #{isPartitioned,jdbcType=INTEGER},
</if>
<if
test=
"isValid != null"
>
is_valid = #{isValid,jdbcType=INTEGER},
</if>
<if
test=
"checkTime != null"
>
check_time = #{checkTime,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime,jdbcType=VARCHAR},
</if>
<if
test=
"checkFilters != null"
>
check_filters = #{checkFilters,jdbcType=LONGVARCHAR},
</if>
<if
test=
"referFilters != null"
>
refer_filters = #{referFilters,jdbcType=LONGVARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update
id=
"updateByPrimaryKeyWithBLOBs"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleDuplexInfoWithBLOBs"
>
update tbl_rule_duplex_info
set check_type = #{checkType,jdbcType=VARCHAR},
check_db_name = #{checkDbName,jdbcType=VARCHAR},
check_tb_name = #{checkTbName,jdbcType=VARCHAR},
check_col_name = #{checkColName,jdbcType=VARCHAR},
refer_db_name = #{referDbName,jdbcType=VARCHAR},
refer_tb_name = #{referTbName,jdbcType=VARCHAR},
refer_col_name = #{referColName,jdbcType=VARCHAR},
is_partitioned = #{isPartitioned,jdbcType=INTEGER},
is_valid = #{isValid,jdbcType=INTEGER},
check_time = #{checkTime,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=VARCHAR},
check_filters = #{checkFilters,jdbcType=LONGVARCHAR},
refer_filters = #{referFilters,jdbcType=LONGVARCHAR}
where id = #{id,jdbcType=INTEGER}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleDuplexInfo"
>
update tbl_rule_duplex_info
set check_type = #{checkType,jdbcType=VARCHAR},
check_db_name = #{checkDbName,jdbcType=VARCHAR},
check_tb_name = #{checkTbName,jdbcType=VARCHAR},
check_col_name = #{checkColName,jdbcType=VARCHAR},
refer_db_name = #{referDbName,jdbcType=VARCHAR},
refer_tb_name = #{referTbName,jdbcType=VARCHAR},
refer_col_name = #{referColName,jdbcType=VARCHAR},
is_partitioned = #{isPartitioned,jdbcType=INTEGER},
is_valid = #{isValid,jdbcType=INTEGER},
check_time = #{checkTime,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=VARCHAR}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
src/main/resources/mybatis/mapper/TblRuleSimpleInfoMapper.xml
0 → 100644
View file @
56b3294d
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.gmei.data.dqmp.mapper.TblRuleSimpleInfoMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.gmei.data.dqmp.domain.TblRuleSimpleInfo"
>
<id
column=
"id"
property=
"id"
jdbcType=
"INTEGER"
/>
<result
column=
"check_type"
property=
"checkType"
jdbcType=
"VARCHAR"
/>
<result
column=
"db_name"
property=
"dbName"
jdbcType=
"VARCHAR"
/>
<result
column=
"tb_name"
property=
"tbName"
jdbcType=
"VARCHAR"
/>
<result
column=
"col_name"
property=
"colName"
jdbcType=
"VARCHAR"
/>
<result
column=
"indicator_type"
property=
"indicatorType"
jdbcType=
"VARCHAR"
/>
<result
column=
"start_time"
property=
"startTime"
jdbcType=
"VARCHAR"
/>
<result
column=
"end_time"
property=
"endTime"
jdbcType=
"VARCHAR"
/>
<result
column=
"is_partitioned"
property=
"isPartitioned"
jdbcType=
"INTEGER"
/>
<result
column=
"is_valid"
property=
"isValid"
jdbcType=
"INTEGER"
/>
<result
column=
"check_time"
property=
"checkTime"
jdbcType=
"VARCHAR"
/>
<result
column=
"create_time"
property=
"createTime"
jdbcType=
"VARCHAR"
/>
</resultMap>
<resultMap
id=
"ResultMapWithBLOBs"
type=
"com.gmei.data.dqmp.domain.TblRuleSimpleInfo"
extends=
"BaseResultMap"
>
<result
column=
"filters"
property=
"filters"
jdbcType=
"LONGVARCHAR"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<where
>
<foreach
collection=
"oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
suffix=
")"
prefixOverrides=
"and"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose
>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
collection=
"criterion.value"
item=
"listItem"
open=
"("
close=
")"
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Update_By_Example_Where_Clause"
>
<where
>
<foreach
collection=
"example.oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
suffix=
")"
prefixOverrides=
"and"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose
>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
collection=
"criterion.value"
item=
"listItem"
open=
"("
close=
")"
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Base_Column_List"
>
id, check_type, db_name, tb_name, col_name, indicator_type, start_time, end_time,
is_partitioned, is_valid, check_time, create_time
</sql>
<sql
id=
"Blob_Column_List"
>
filters
</sql>
<select
id=
"selectByExampleWithBLOBs"
resultMap=
"ResultMapWithBLOBs"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleSimpleInfoCriteria"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
,
<include
refid=
"Blob_Column_List"
/>
from tbl_rule_simple_info
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByExample"
resultMap=
"BaseResultMap"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleSimpleInfoCriteria"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from tbl_rule_simple_info
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByPrimaryKey"
resultMap=
"ResultMapWithBLOBs"
parameterType=
"java.lang.Integer"
>
select
<include
refid=
"Base_Column_List"
/>
,
<include
refid=
"Blob_Column_List"
/>
from tbl_rule_simple_info
where id = #{id,jdbcType=INTEGER}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Integer"
>
delete from tbl_rule_simple_info
where id = #{id,jdbcType=INTEGER}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleSimpleInfoCriteria"
>
delete from tbl_rule_simple_info
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleSimpleInfo"
>
insert into tbl_rule_simple_info (id, check_type, db_name,
tb_name, col_name, indicator_type,
start_time, end_time, is_partitioned,
is_valid, check_time, create_time,
filters)
values (#{id,jdbcType=INTEGER}, #{checkType,jdbcType=VARCHAR}, #{dbName,jdbcType=VARCHAR},
#{tbName,jdbcType=VARCHAR}, #{colName,jdbcType=VARCHAR}, #{indicatorType,jdbcType=VARCHAR},
#{startTime,jdbcType=VARCHAR}, #{endTime,jdbcType=VARCHAR}, #{isPartitioned,jdbcType=INTEGER},
#{isValid,jdbcType=INTEGER}, #{checkTime,jdbcType=VARCHAR}, #{createTime,jdbcType=VARCHAR},
#{filters,jdbcType=LONGVARCHAR})
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleSimpleInfo"
>
insert into tbl_rule_simple_info
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"checkType != null"
>
check_type,
</if>
<if
test=
"dbName != null"
>
db_name,
</if>
<if
test=
"tbName != null"
>
tb_name,
</if>
<if
test=
"colName != null"
>
col_name,
</if>
<if
test=
"indicatorType != null"
>
indicator_type,
</if>
<if
test=
"startTime != null"
>
start_time,
</if>
<if
test=
"endTime != null"
>
end_time,
</if>
<if
test=
"isPartitioned != null"
>
is_partitioned,
</if>
<if
test=
"isValid != null"
>
is_valid,
</if>
<if
test=
"checkTime != null"
>
check_time,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"filters != null"
>
filters,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"checkType != null"
>
#{checkType,jdbcType=VARCHAR},
</if>
<if
test=
"dbName != null"
>
#{dbName,jdbcType=VARCHAR},
</if>
<if
test=
"tbName != null"
>
#{tbName,jdbcType=VARCHAR},
</if>
<if
test=
"colName != null"
>
#{colName,jdbcType=VARCHAR},
</if>
<if
test=
"indicatorType != null"
>
#{indicatorType,jdbcType=VARCHAR},
</if>
<if
test=
"startTime != null"
>
#{startTime,jdbcType=VARCHAR},
</if>
<if
test=
"endTime != null"
>
#{endTime,jdbcType=VARCHAR},
</if>
<if
test=
"isPartitioned != null"
>
#{isPartitioned,jdbcType=INTEGER},
</if>
<if
test=
"isValid != null"
>
#{isValid,jdbcType=INTEGER},
</if>
<if
test=
"checkTime != null"
>
#{checkTime,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
#{createTime,jdbcType=VARCHAR},
</if>
<if
test=
"filters != null"
>
#{filters,jdbcType=LONGVARCHAR},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleSimpleInfoCriteria"
resultType=
"java.lang.Integer"
>
select count(*) from tbl_rule_simple_info
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
update tbl_rule_simple_info
<set
>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=INTEGER},
</if>
<if
test=
"record.checkType != null"
>
check_type = #{record.checkType,jdbcType=VARCHAR},
</if>
<if
test=
"record.dbName != null"
>
db_name = #{record.dbName,jdbcType=VARCHAR},
</if>
<if
test=
"record.tbName != null"
>
tb_name = #{record.tbName,jdbcType=VARCHAR},
</if>
<if
test=
"record.colName != null"
>
col_name = #{record.colName,jdbcType=VARCHAR},
</if>
<if
test=
"record.indicatorType != null"
>
indicator_type = #{record.indicatorType,jdbcType=VARCHAR},
</if>
<if
test=
"record.startTime != null"
>
start_time = #{record.startTime,jdbcType=VARCHAR},
</if>
<if
test=
"record.endTime != null"
>
end_time = #{record.endTime,jdbcType=VARCHAR},
</if>
<if
test=
"record.isPartitioned != null"
>
is_partitioned = #{record.isPartitioned,jdbcType=INTEGER},
</if>
<if
test=
"record.isValid != null"
>
is_valid = #{record.isValid,jdbcType=INTEGER},
</if>
<if
test=
"record.checkTime != null"
>
check_time = #{record.checkTime,jdbcType=VARCHAR},
</if>
<if
test=
"record.createTime != null"
>
create_time = #{record.createTime,jdbcType=VARCHAR},
</if>
<if
test=
"record.filters != null"
>
filters = #{record.filters,jdbcType=LONGVARCHAR},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExampleWithBLOBs"
parameterType=
"map"
>
update tbl_rule_simple_info
set id = #{record.id,jdbcType=INTEGER},
check_type = #{record.checkType,jdbcType=VARCHAR},
db_name = #{record.dbName,jdbcType=VARCHAR},
tb_name = #{record.tbName,jdbcType=VARCHAR},
col_name = #{record.colName,jdbcType=VARCHAR},
indicator_type = #{record.indicatorType,jdbcType=VARCHAR},
start_time = #{record.startTime,jdbcType=VARCHAR},
end_time = #{record.endTime,jdbcType=VARCHAR},
is_partitioned = #{record.isPartitioned,jdbcType=INTEGER},
is_valid = #{record.isValid,jdbcType=INTEGER},
check_time = #{record.checkTime,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=VARCHAR},
filters = #{record.filters,jdbcType=LONGVARCHAR}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
update tbl_rule_simple_info
set id = #{record.id,jdbcType=INTEGER},
check_type = #{record.checkType,jdbcType=VARCHAR},
db_name = #{record.dbName,jdbcType=VARCHAR},
tb_name = #{record.tbName,jdbcType=VARCHAR},
col_name = #{record.colName,jdbcType=VARCHAR},
indicator_type = #{record.indicatorType,jdbcType=VARCHAR},
start_time = #{record.startTime,jdbcType=VARCHAR},
end_time = #{record.endTime,jdbcType=VARCHAR},
is_partitioned = #{record.isPartitioned,jdbcType=INTEGER},
is_valid = #{record.isValid,jdbcType=INTEGER},
check_time = #{record.checkTime,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=VARCHAR}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleSimpleInfo"
>
update tbl_rule_simple_info
<set
>
<if
test=
"checkType != null"
>
check_type = #{checkType,jdbcType=VARCHAR},
</if>
<if
test=
"dbName != null"
>
db_name = #{dbName,jdbcType=VARCHAR},
</if>
<if
test=
"tbName != null"
>
tb_name = #{tbName,jdbcType=VARCHAR},
</if>
<if
test=
"colName != null"
>
col_name = #{colName,jdbcType=VARCHAR},
</if>
<if
test=
"indicatorType != null"
>
indicator_type = #{indicatorType,jdbcType=VARCHAR},
</if>
<if
test=
"startTime != null"
>
start_time = #{startTime,jdbcType=VARCHAR},
</if>
<if
test=
"endTime != null"
>
end_time = #{endTime,jdbcType=VARCHAR},
</if>
<if
test=
"isPartitioned != null"
>
is_partitioned = #{isPartitioned,jdbcType=INTEGER},
</if>
<if
test=
"isValid != null"
>
is_valid = #{isValid,jdbcType=INTEGER},
</if>
<if
test=
"checkTime != null"
>
check_time = #{checkTime,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime,jdbcType=VARCHAR},
</if>
<if
test=
"filters != null"
>
filters = #{filters,jdbcType=LONGVARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update
id=
"updateByPrimaryKeyWithBLOBs"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleSimpleInfo"
>
update tbl_rule_simple_info
set check_type = #{checkType,jdbcType=VARCHAR},
db_name = #{dbName,jdbcType=VARCHAR},
tb_name = #{tbName,jdbcType=VARCHAR},
col_name = #{colName,jdbcType=VARCHAR},
indicator_type = #{indicatorType,jdbcType=VARCHAR},
start_time = #{startTime,jdbcType=VARCHAR},
end_time = #{endTime,jdbcType=VARCHAR},
is_partitioned = #{isPartitioned,jdbcType=INTEGER},
is_valid = #{isValid,jdbcType=INTEGER},
check_time = #{checkTime,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=VARCHAR},
filters = #{filters,jdbcType=LONGVARCHAR}
where id = #{id,jdbcType=INTEGER}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.gmei.data.dqmp.domain.TblRuleSimpleInfo"
>
update tbl_rule_simple_info
set check_type = #{checkType,jdbcType=VARCHAR},
db_name = #{dbName,jdbcType=VARCHAR},
tb_name = #{tbName,jdbcType=VARCHAR},
col_name = #{colName,jdbcType=VARCHAR},
indicator_type = #{indicatorType,jdbcType=VARCHAR},
start_time = #{startTime,jdbcType=VARCHAR},
end_time = #{endTime,jdbcType=VARCHAR},
is_partitioned = #{isPartitioned,jdbcType=INTEGER},
is_valid = #{isValid,jdbcType=INTEGER},
check_time = #{checkTime,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=VARCHAR}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
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