Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
traffic-front
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangxiaoming
traffic-front
Commits
60fc2bda
Commit
60fc2bda
authored
Sep 14, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[dev] re gernerator Template entity and xml
parent
7b14e66b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
14 deletions
+14
-14
generatorConfig.xml
atms-dao/etc/generator-oracle/generatorConfig.xml
+1
-1
Template.java
atms-dao/src/main/java/pwc/taxtech/atms/entity/Template.java
+3
-3
TemplateExample.java
...rc/main/java/pwc/taxtech/atms/entity/TemplateExample.java
+10
-10
No files found.
atms-dao/etc/generator-oracle/generatorConfig.xml
View file @
60fc2bda
...
...
@@ -431,7 +431,7 @@
<columnOverride
column=
"TEMPLATE_GROUP_ID"
javaType=
"java.lang.Long"
/>
<columnOverride
column=
"ORDER_INDEX"
javaType=
"java.lang.Integer"
/>
<columnOverride
column=
"IS_SYSTEM_TYPE"
javaType=
"java.lang.Boolean"
/>
<columnOverride
column=
"IS_ACTIVE_ASSOCIATION"
javaType=
"java.lang.
Integer
"
/>
<columnOverride
column=
"IS_ACTIVE_ASSOCIATION"
javaType=
"java.lang.
Boolean
"
/>
</table>
<table
tableName=
"TEMPLATE_FORMULA"
schema=
"tax_admin"
domainObjectName=
"TemplateFormula"
>
...
...
atms-dao/src/main/java/pwc/taxtech/atms/entity/Template.java
View file @
60fc2bda
...
...
@@ -108,7 +108,7 @@ public class Template extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
private
Integer
isActiveAssociation
;
private
Boolean
isActiveAssociation
;
/**
*
...
...
@@ -393,7 +393,7 @@ public class Template extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
Integer
getIsActiveAssociation
()
{
public
Boolean
getIsActiveAssociation
()
{
return
isActiveAssociation
;
}
...
...
@@ -405,7 +405,7 @@ public class Template extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
void
setIsActiveAssociation
(
Integer
isActiveAssociation
)
{
public
void
setIsActiveAssociation
(
Boolean
isActiveAssociation
)
{
this
.
isActiveAssociation
=
isActiveAssociation
;
}
...
...
atms-dao/src/main/java/pwc/taxtech/atms/entity/TemplateExample.java
View file @
60fc2bda
...
...
@@ -835,52 +835,52 @@ public class TemplateExample {
return
(
Criteria
)
this
;
}
public
Criteria
andIsActiveAssociationEqualTo
(
Integer
value
)
{
public
Criteria
andIsActiveAssociationEqualTo
(
Boolean
value
)
{
addCriterion
(
"IS_ACTIVE_ASSOCIATION ="
,
value
,
"isActiveAssociation"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsActiveAssociationNotEqualTo
(
Integer
value
)
{
public
Criteria
andIsActiveAssociationNotEqualTo
(
Boolean
value
)
{
addCriterion
(
"IS_ACTIVE_ASSOCIATION <>"
,
value
,
"isActiveAssociation"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsActiveAssociationGreaterThan
(
Integer
value
)
{
public
Criteria
andIsActiveAssociationGreaterThan
(
Boolean
value
)
{
addCriterion
(
"IS_ACTIVE_ASSOCIATION >"
,
value
,
"isActiveAssociation"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsActiveAssociationGreaterThanOrEqualTo
(
Integer
value
)
{
public
Criteria
andIsActiveAssociationGreaterThanOrEqualTo
(
Boolean
value
)
{
addCriterion
(
"IS_ACTIVE_ASSOCIATION >="
,
value
,
"isActiveAssociation"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsActiveAssociationLessThan
(
Integer
value
)
{
public
Criteria
andIsActiveAssociationLessThan
(
Boolean
value
)
{
addCriterion
(
"IS_ACTIVE_ASSOCIATION <"
,
value
,
"isActiveAssociation"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsActiveAssociationLessThanOrEqualTo
(
Integer
value
)
{
public
Criteria
andIsActiveAssociationLessThanOrEqualTo
(
Boolean
value
)
{
addCriterion
(
"IS_ACTIVE_ASSOCIATION <="
,
value
,
"isActiveAssociation"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsActiveAssociationIn
(
List
<
Integer
>
values
)
{
public
Criteria
andIsActiveAssociationIn
(
List
<
Boolean
>
values
)
{
addCriterion
(
"IS_ACTIVE_ASSOCIATION in"
,
values
,
"isActiveAssociation"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsActiveAssociationNotIn
(
List
<
Integer
>
values
)
{
public
Criteria
andIsActiveAssociationNotIn
(
List
<
Boolean
>
values
)
{
addCriterion
(
"IS_ACTIVE_ASSOCIATION not in"
,
values
,
"isActiveAssociation"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsActiveAssociationBetween
(
Integer
value1
,
Integer
value2
)
{
public
Criteria
andIsActiveAssociationBetween
(
Boolean
value1
,
Boolean
value2
)
{
addCriterion
(
"IS_ACTIVE_ASSOCIATION between"
,
value1
,
value2
,
"isActiveAssociation"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsActiveAssociationNotBetween
(
Integer
value1
,
Integer
value2
)
{
public
Criteria
andIsActiveAssociationNotBetween
(
Boolean
value1
,
Boolean
value2
)
{
addCriterion
(
"IS_ACTIVE_ASSOCIATION not between"
,
value1
,
value2
,
"isActiveAssociation"
);
return
(
Criteria
)
this
;
}
...
...
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