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
f0d4f543
Commit
f0d4f543
authored
Sep 13, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[dev] fixed some declare field type to real used type
parent
2846661e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
Permission.java
...gen/src/main/java/pwc/taxtech/atms/entity/Permission.java
+3
-3
PeriodTemplate.java
...main/java/pwc/taxtech/atms/vat/entity/PeriodTemplate.java
+3
-3
GenGeneratorXml.java
atms-gen/src/test/java/com/neo/GenGeneratorXml.java
+2
-0
No files found.
atms-gen/src/main/java/pwc/taxtech/atms/entity/Permission.java
View file @
f0d4f543
...
...
@@ -20,7 +20,7 @@ public class Permission {
private
String
code
;
private
String
parentId
;
private
Boolean
isActive
;
private
Boolean
pLevel
;
private
Short
pLevel
;
private
String
relyOnCodes
;
private
String
menuId
;
private
String
serviceTypeId
;
...
...
@@ -82,11 +82,11 @@ public class Permission {
@Basic
@Column
(
name
=
"P_LEVEL"
,
nullable
=
false
)
public
Boolean
getp
Level
()
{
public
Short
getP
Level
()
{
return
pLevel
;
}
public
void
set
pLevel
(
Boolean
pLevel
)
{
public
void
set
PLevel
(
Short
pLevel
)
{
this
.
pLevel
=
pLevel
;
}
...
...
atms-gen/src/main/java/pwc/taxtech/atms/vat/entity/PeriodTemplate.java
View file @
f0d4f543
...
...
@@ -26,7 +26,7 @@ public class PeriodTemplate {
private
Date
createTime
;
private
Date
updateTime
;
private
Boolean
isSystemType
;
private
Integer
isActiveAssociation
;
private
Boolean
isActiveAssociation
;
private
String
parentId
;
private
Long
templateId
;
private
String
createBy
;
...
...
@@ -154,11 +154,11 @@ public class PeriodTemplate {
@Basic
@Column
(
name
=
"IS_ACTIVE_ASSOCIATION"
,
nullable
=
false
)
@ColumnDefault
(
DEF_DEFAULT_NUMBER
)
public
Integer
getIsActiveAssociation
()
{
public
Boolean
getIsActiveAssociation
()
{
return
isActiveAssociation
;
}
public
void
setIsActiveAssociation
(
Integer
isActiveAssociation
)
{
public
void
setIsActiveAssociation
(
Boolean
isActiveAssociation
)
{
this
.
isActiveAssociation
=
isActiveAssociation
;
}
...
...
atms-gen/src/test/java/com/neo/GenGeneratorXml.java
View file @
f0d4f543
...
...
@@ -130,6 +130,8 @@ public class GenGeneratorXml {
return
"java.lang.Long"
;
case
"BigDecimal"
:
return
"java.math.BigDecimal"
;
case
"Short"
:
return
"java.lang.Short"
;
}
return
javaType
;
}
...
...
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