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
d861941a
Commit
d861941a
authored
Jul 11, 2019
by
frank.xa.zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed page issue -- frank
parent
d9948c46
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
107 additions
and
127 deletions
+107
-127
OrganizationDirector.java
...axtech/atms/organization/entity/OrganizationDirector.java
+7
-7
OrganizationDirectorExample.java
...atms/organization/entity/OrganizationDirectorExample.java
+20
-30
OrganizationHK.java
.../pwc/taxtech/atms/organization/entity/OrganizationHK.java
+27
-27
OrganizationHKExample.java
...xtech/atms/organization/entity/OrganizationHKExample.java
+0
-0
OrganizationShareholder.java
...ech/atms/organization/entity/OrganizationShareholder.java
+7
-7
OrganizationShareholderExample.java
...s/organization/entity/OrganizationShareholderExample.java
+20
-30
OrganizationDirectorMapper.xml
...tech/atms/organization/dao/OrganizationDirectorMapper.xml
+13
-13
OrganizationHKMapper.xml
...wc/taxtech/atms/organization/dao/OrganizationHKMapper.xml
+0
-0
OrganizationShareholderMapper.xml
...h/atms/organization/dao/OrganizationShareholderMapper.xml
+13
-13
No files found.
atms-dao/src/main/java/pwc/taxtech/atms/organization/entity/OrganizationDirector.java
View file @
d861941a
...
...
@@ -74,7 +74,7 @@ public class OrganizationDirector extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
private
B
oolean
isExecutive
;
private
B
yte
isExecutive
;
/**
*
...
...
@@ -83,7 +83,7 @@ public class OrganizationDirector extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
private
String
otherRoles
;
private
Byte
otherRoles
;
/**
*
...
...
@@ -276,7 +276,7 @@ public class OrganizationDirector extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
B
oolean
getIsExecutive
()
{
public
B
yte
getIsExecutive
()
{
return
isExecutive
;
}
...
...
@@ -288,7 +288,7 @@ public class OrganizationDirector extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
void
setIsExecutive
(
B
oolean
isExecutive
)
{
public
void
setIsExecutive
(
B
yte
isExecutive
)
{
this
.
isExecutive
=
isExecutive
;
}
...
...
@@ -300,7 +300,7 @@ public class OrganizationDirector extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
String
getOtherRoles
()
{
public
Byte
getOtherRoles
()
{
return
otherRoles
;
}
...
...
@@ -312,8 +312,8 @@ public class OrganizationDirector extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
void
setOtherRoles
(
String
otherRoles
)
{
this
.
otherRoles
=
otherRoles
==
null
?
null
:
otherRoles
.
trim
()
;
public
void
setOtherRoles
(
Byte
otherRoles
)
{
this
.
otherRoles
=
otherRoles
;
}
/**
...
...
atms-dao/src/main/java/pwc/taxtech/atms/organization/entity/OrganizationDirectorExample.java
View file @
d861941a
...
...
@@ -585,52 +585,52 @@ public class OrganizationDirectorExample {
return
(
Criteria
)
this
;
}
public
Criteria
andIsExecutiveEqualTo
(
B
oolean
value
)
{
public
Criteria
andIsExecutiveEqualTo
(
B
yte
value
)
{
addCriterion
(
"is_executive ="
,
value
,
"isExecutive"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsExecutiveNotEqualTo
(
B
oolean
value
)
{
public
Criteria
andIsExecutiveNotEqualTo
(
B
yte
value
)
{
addCriterion
(
"is_executive <>"
,
value
,
"isExecutive"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsExecutiveGreaterThan
(
B
oolean
value
)
{
public
Criteria
andIsExecutiveGreaterThan
(
B
yte
value
)
{
addCriterion
(
"is_executive >"
,
value
,
"isExecutive"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsExecutiveGreaterThanOrEqualTo
(
B
oolean
value
)
{
public
Criteria
andIsExecutiveGreaterThanOrEqualTo
(
B
yte
value
)
{
addCriterion
(
"is_executive >="
,
value
,
"isExecutive"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsExecutiveLessThan
(
B
oolean
value
)
{
public
Criteria
andIsExecutiveLessThan
(
B
yte
value
)
{
addCriterion
(
"is_executive <"
,
value
,
"isExecutive"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsExecutiveLessThanOrEqualTo
(
B
oolean
value
)
{
public
Criteria
andIsExecutiveLessThanOrEqualTo
(
B
yte
value
)
{
addCriterion
(
"is_executive <="
,
value
,
"isExecutive"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsExecutiveIn
(
List
<
B
oolean
>
values
)
{
public
Criteria
andIsExecutiveIn
(
List
<
B
yte
>
values
)
{
addCriterion
(
"is_executive in"
,
values
,
"isExecutive"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsExecutiveNotIn
(
List
<
B
oolean
>
values
)
{
public
Criteria
andIsExecutiveNotIn
(
List
<
B
yte
>
values
)
{
addCriterion
(
"is_executive not in"
,
values
,
"isExecutive"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsExecutiveBetween
(
B
oolean
value1
,
Boolean
value2
)
{
public
Criteria
andIsExecutiveBetween
(
B
yte
value1
,
Byte
value2
)
{
addCriterion
(
"is_executive between"
,
value1
,
value2
,
"isExecutive"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIsExecutiveNotBetween
(
B
oolean
value1
,
Boolean
value2
)
{
public
Criteria
andIsExecutiveNotBetween
(
B
yte
value1
,
Byte
value2
)
{
addCriterion
(
"is_executive not between"
,
value1
,
value2
,
"isExecutive"
);
return
(
Criteria
)
this
;
}
...
...
@@ -645,62 +645,52 @@ public class OrganizationDirectorExample {
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesEqualTo
(
String
value
)
{
public
Criteria
andOtherRolesEqualTo
(
Byte
value
)
{
addCriterion
(
"other_roles ="
,
value
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesNotEqualTo
(
String
value
)
{
public
Criteria
andOtherRolesNotEqualTo
(
Byte
value
)
{
addCriterion
(
"other_roles <>"
,
value
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesGreaterThan
(
String
value
)
{
public
Criteria
andOtherRolesGreaterThan
(
Byte
value
)
{
addCriterion
(
"other_roles >"
,
value
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesGreaterThanOrEqualTo
(
String
value
)
{
public
Criteria
andOtherRolesGreaterThanOrEqualTo
(
Byte
value
)
{
addCriterion
(
"other_roles >="
,
value
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesLessThan
(
String
value
)
{
public
Criteria
andOtherRolesLessThan
(
Byte
value
)
{
addCriterion
(
"other_roles <"
,
value
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesLessThanOrEqualTo
(
String
value
)
{
public
Criteria
andOtherRolesLessThanOrEqualTo
(
Byte
value
)
{
addCriterion
(
"other_roles <="
,
value
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesLike
(
String
value
)
{
addCriterion
(
"other_roles like"
,
value
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesNotLike
(
String
value
)
{
addCriterion
(
"other_roles not like"
,
value
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesIn
(
List
<
String
>
values
)
{
public
Criteria
andOtherRolesIn
(
List
<
Byte
>
values
)
{
addCriterion
(
"other_roles in"
,
values
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesNotIn
(
List
<
String
>
values
)
{
public
Criteria
andOtherRolesNotIn
(
List
<
Byte
>
values
)
{
addCriterion
(
"other_roles not in"
,
values
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesBetween
(
String
value1
,
String
value2
)
{
public
Criteria
andOtherRolesBetween
(
Byte
value1
,
Byte
value2
)
{
addCriterion
(
"other_roles between"
,
value1
,
value2
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOtherRolesNotBetween
(
String
value1
,
String
value2
)
{
public
Criteria
andOtherRolesNotBetween
(
Byte
value1
,
Byte
value2
)
{
addCriterion
(
"other_roles not between"
,
value1
,
value2
,
"otherRoles"
);
return
(
Criteria
)
this
;
}
...
...
atms-dao/src/main/java/pwc/taxtech/atms/organization/entity/OrganizationHK.java
View file @
d861941a
...
...
@@ -64,16 +64,16 @@ public class OrganizationHK extends BaseEntity implements Serializable {
/**
* Database Column Remarks:
*
0
:Limited partnership
*
1
:Limited company
*
2
:Trustee
*
1
:Limited partnership
*
2
:Limited company
*
3
:Trustee
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column organization.legal_form
*
* @mbg.generated
*/
private
String
legalForm
;
private
Byte
legalForm
;
/**
*
...
...
@@ -161,16 +161,16 @@ public class OrganizationHK extends BaseEntity implements Serializable {
/**
* Database Column Remarks:
*
0
:Investment fund
*
1
:Investment holding
*
2
:Portfolio company
*
1
:Investment fund
*
2
:Investment holding
*
3
:Portfolio company
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column organization.entity_level
*
* @mbg.generated
*/
private
String
entityLevel
;
private
Byte
entityLevel
;
/**
*
...
...
@@ -183,16 +183,16 @@ public class OrganizationHK extends BaseEntity implements Serializable {
/**
* Database Column Remarks:
*
0
:Hong Kong
*
1
:British Virgin Islands
*
2
:Cayman Islands
*
1
:Hong Kong
*
2
:British Virgin Islands
*
3
:Cayman Islands
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column organization.jurisdiction_of_formation
*
* @mbg.generated
*/
private
String
jurisdictionOfFormation
;
private
Byte
jurisdictionOfFormation
;
/**
*
...
...
@@ -223,15 +223,15 @@ public class OrganizationHK extends BaseEntity implements Serializable {
/**
* Database Column Remarks:
*
0
:Ordinary shares
*
1
:Preference shares
*
1
:Ordinary shares
*
2
:Preference shares
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column organization.ownership_form
*
* @mbg.generated
*/
private
String
ownershipForm
;
private
Byte
ownershipForm
;
/**
*
...
...
@@ -441,7 +441,7 @@ public class OrganizationHK extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
String
getLegalForm
()
{
public
Byte
getLegalForm
()
{
return
legalForm
;
}
...
...
@@ -453,8 +453,8 @@ public class OrganizationHK extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
void
setLegalForm
(
String
legalForm
)
{
this
.
legalForm
=
legalForm
==
null
?
null
:
legalForm
.
trim
()
;
public
void
setLegalForm
(
Byte
legalForm
)
{
this
.
legalForm
=
legalForm
;
}
/**
...
...
@@ -681,7 +681,7 @@ public class OrganizationHK extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
String
getEntityLevel
()
{
public
Byte
getEntityLevel
()
{
return
entityLevel
;
}
...
...
@@ -693,8 +693,8 @@ public class OrganizationHK extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
void
setEntityLevel
(
String
entityLevel
)
{
this
.
entityLevel
=
entityLevel
==
null
?
null
:
entityLevel
.
trim
()
;
public
void
setEntityLevel
(
Byte
entityLevel
)
{
this
.
entityLevel
=
entityLevel
;
}
/**
...
...
@@ -729,7 +729,7 @@ public class OrganizationHK extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
String
getJurisdictionOfFormation
()
{
public
Byte
getJurisdictionOfFormation
()
{
return
jurisdictionOfFormation
;
}
...
...
@@ -741,8 +741,8 @@ public class OrganizationHK extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
void
setJurisdictionOfFormation
(
String
jurisdictionOfFormation
)
{
this
.
jurisdictionOfFormation
=
jurisdictionOfFormation
==
null
?
null
:
jurisdictionOfFormation
.
trim
()
;
public
void
setJurisdictionOfFormation
(
Byte
jurisdictionOfFormation
)
{
this
.
jurisdictionOfFormation
=
jurisdictionOfFormation
;
}
/**
...
...
@@ -825,7 +825,7 @@ public class OrganizationHK extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
String
getOwnershipForm
()
{
public
Byte
getOwnershipForm
()
{
return
ownershipForm
;
}
...
...
@@ -837,8 +837,8 @@ public class OrganizationHK extends BaseEntity implements Serializable {
*
* @mbg.generated
*/
public
void
setOwnershipForm
(
String
ownershipForm
)
{
this
.
ownershipForm
=
ownershipForm
==
null
?
null
:
ownershipForm
.
trim
()
;
public
void
setOwnershipForm
(
Byte
ownershipForm
)
{
this
.
ownershipForm
=
ownershipForm
;
}
/**
...
...
atms-dao/src/main/java/pwc/taxtech/atms/organization/entity/OrganizationHKExample.java
View file @
d861941a
This diff is collapsed.
Click to expand it.
atms-dao/src/main/java/pwc/taxtech/atms/organization/entity/OrganizationShareholder.java
View file @
d861941a
...
...
@@ -47,7 +47,7 @@ public class OrganizationShareholder extends BaseEntity implements Serializable
*
* @mbg.generated
*/
private
Integer
ownershipForm
;
private
Byte
ownershipForm
;
/**
*
...
...
@@ -65,7 +65,7 @@ public class OrganizationShareholder extends BaseEntity implements Serializable
*
* @mbg.generated
*/
private
String
classOfShares
;
private
Byte
classOfShares
;
/**
*
...
...
@@ -195,7 +195,7 @@ public class OrganizationShareholder extends BaseEntity implements Serializable
*
* @mbg.generated
*/
public
Integer
getOwnershipForm
()
{
public
Byte
getOwnershipForm
()
{
return
ownershipForm
;
}
...
...
@@ -207,7 +207,7 @@ public class OrganizationShareholder extends BaseEntity implements Serializable
*
* @mbg.generated
*/
public
void
setOwnershipForm
(
Integer
ownershipForm
)
{
public
void
setOwnershipForm
(
Byte
ownershipForm
)
{
this
.
ownershipForm
=
ownershipForm
;
}
...
...
@@ -243,7 +243,7 @@ public class OrganizationShareholder extends BaseEntity implements Serializable
*
* @mbg.generated
*/
public
String
getClassOfShares
()
{
public
Byte
getClassOfShares
()
{
return
classOfShares
;
}
...
...
@@ -255,8 +255,8 @@ public class OrganizationShareholder extends BaseEntity implements Serializable
*
* @mbg.generated
*/
public
void
setClassOfShares
(
String
classOfShares
)
{
this
.
classOfShares
=
classOfShares
==
null
?
null
:
classOfShares
.
trim
()
;
public
void
setClassOfShares
(
Byte
classOfShares
)
{
this
.
classOfShares
=
classOfShares
;
}
/**
...
...
atms-dao/src/main/java/pwc/taxtech/atms/organization/entity/OrganizationShareholderExample.java
View file @
d861941a
...
...
@@ -385,52 +385,52 @@ public class OrganizationShareholderExample {
return
(
Criteria
)
this
;
}
public
Criteria
andOwnershipFormEqualTo
(
Integer
value
)
{
public
Criteria
andOwnershipFormEqualTo
(
Byte
value
)
{
addCriterion
(
"ownership_form ="
,
value
,
"ownershipForm"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOwnershipFormNotEqualTo
(
Integer
value
)
{
public
Criteria
andOwnershipFormNotEqualTo
(
Byte
value
)
{
addCriterion
(
"ownership_form <>"
,
value
,
"ownershipForm"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOwnershipFormGreaterThan
(
Integer
value
)
{
public
Criteria
andOwnershipFormGreaterThan
(
Byte
value
)
{
addCriterion
(
"ownership_form >"
,
value
,
"ownershipForm"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOwnershipFormGreaterThanOrEqualTo
(
Integer
value
)
{
public
Criteria
andOwnershipFormGreaterThanOrEqualTo
(
Byte
value
)
{
addCriterion
(
"ownership_form >="
,
value
,
"ownershipForm"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOwnershipFormLessThan
(
Integer
value
)
{
public
Criteria
andOwnershipFormLessThan
(
Byte
value
)
{
addCriterion
(
"ownership_form <"
,
value
,
"ownershipForm"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOwnershipFormLessThanOrEqualTo
(
Integer
value
)
{
public
Criteria
andOwnershipFormLessThanOrEqualTo
(
Byte
value
)
{
addCriterion
(
"ownership_form <="
,
value
,
"ownershipForm"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOwnershipFormIn
(
List
<
Integer
>
values
)
{
public
Criteria
andOwnershipFormIn
(
List
<
Byte
>
values
)
{
addCriterion
(
"ownership_form in"
,
values
,
"ownershipForm"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOwnershipFormNotIn
(
List
<
Integer
>
values
)
{
public
Criteria
andOwnershipFormNotIn
(
List
<
Byte
>
values
)
{
addCriterion
(
"ownership_form not in"
,
values
,
"ownershipForm"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOwnershipFormBetween
(
Integer
value1
,
Integer
value2
)
{
public
Criteria
andOwnershipFormBetween
(
Byte
value1
,
Byte
value2
)
{
addCriterion
(
"ownership_form between"
,
value1
,
value2
,
"ownershipForm"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOwnershipFormNotBetween
(
Integer
value1
,
Integer
value2
)
{
public
Criteria
andOwnershipFormNotBetween
(
Byte
value1
,
Byte
value2
)
{
addCriterion
(
"ownership_form not between"
,
value1
,
value2
,
"ownershipForm"
);
return
(
Criteria
)
this
;
}
...
...
@@ -505,62 +505,52 @@ public class OrganizationShareholderExample {
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesEqualTo
(
String
value
)
{
public
Criteria
andClassOfSharesEqualTo
(
Byte
value
)
{
addCriterion
(
"class_of_shares ="
,
value
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesNotEqualTo
(
String
value
)
{
public
Criteria
andClassOfSharesNotEqualTo
(
Byte
value
)
{
addCriterion
(
"class_of_shares <>"
,
value
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesGreaterThan
(
String
value
)
{
public
Criteria
andClassOfSharesGreaterThan
(
Byte
value
)
{
addCriterion
(
"class_of_shares >"
,
value
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesGreaterThanOrEqualTo
(
String
value
)
{
public
Criteria
andClassOfSharesGreaterThanOrEqualTo
(
Byte
value
)
{
addCriterion
(
"class_of_shares >="
,
value
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesLessThan
(
String
value
)
{
public
Criteria
andClassOfSharesLessThan
(
Byte
value
)
{
addCriterion
(
"class_of_shares <"
,
value
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesLessThanOrEqualTo
(
String
value
)
{
public
Criteria
andClassOfSharesLessThanOrEqualTo
(
Byte
value
)
{
addCriterion
(
"class_of_shares <="
,
value
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesLike
(
String
value
)
{
addCriterion
(
"class_of_shares like"
,
value
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesNotLike
(
String
value
)
{
addCriterion
(
"class_of_shares not like"
,
value
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesIn
(
List
<
String
>
values
)
{
public
Criteria
andClassOfSharesIn
(
List
<
Byte
>
values
)
{
addCriterion
(
"class_of_shares in"
,
values
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesNotIn
(
List
<
String
>
values
)
{
public
Criteria
andClassOfSharesNotIn
(
List
<
Byte
>
values
)
{
addCriterion
(
"class_of_shares not in"
,
values
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesBetween
(
String
value1
,
String
value2
)
{
public
Criteria
andClassOfSharesBetween
(
Byte
value1
,
Byte
value2
)
{
addCriterion
(
"class_of_shares between"
,
value1
,
value2
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
public
Criteria
andClassOfSharesNotBetween
(
String
value1
,
String
value2
)
{
public
Criteria
andClassOfSharesNotBetween
(
Byte
value1
,
Byte
value2
)
{
addCriterion
(
"class_of_shares not between"
,
value1
,
value2
,
"classOfShares"
);
return
(
Criteria
)
this
;
}
...
...
atms-dao/src/main/resources/pwc/taxtech/atms/organization/dao/OrganizationDirectorMapper.xml
View file @
d861941a
...
...
@@ -12,8 +12,8 @@
<result
column=
"residency"
jdbcType=
"VARCHAR"
property=
"residency"
/>
<result
column=
"date_of_appointment"
jdbcType=
"TIMESTAMP"
property=
"dateOfAppointment"
/>
<result
column=
"date_of_resignation"
jdbcType=
"TIMESTAMP"
property=
"dateOfResignation"
/>
<result
column=
"is_executive"
jdbcType=
"
BI
T"
property=
"isExecutive"
/>
<result
column=
"other_roles"
jdbcType=
"
VARCHAR
"
property=
"otherRoles"
/>
<result
column=
"is_executive"
jdbcType=
"
TINYIN
T"
property=
"isExecutive"
/>
<result
column=
"other_roles"
jdbcType=
"
TINYINT
"
property=
"otherRoles"
/>
<result
column=
"is_delete"
jdbcType=
"BIT"
property=
"isDelete"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
<result
column=
"update_time"
jdbcType=
"TIMESTAMP"
property=
"updateTime"
/>
...
...
@@ -149,7 +149,7 @@
create_time, update_time)
values (#{id,jdbcType=BIGINT}, #{entityId,jdbcType=BIGINT}, #{directorName,jdbcType=VARCHAR},
#{residency,jdbcType=VARCHAR}, #{dateOfAppointment,jdbcType=TIMESTAMP}, #{dateOfResignation,jdbcType=TIMESTAMP},
#{isExecutive,jdbcType=
BIT}, #{otherRoles,jdbcType=VARCHAR
}, #{isDelete,jdbcType=BIT},
#{isExecutive,jdbcType=
TINYINT}, #{otherRoles,jdbcType=TINYINT
}, #{isDelete,jdbcType=BIT},
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP})
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.organization.entity.OrganizationDirector"
>
...
...
@@ -213,10 +213,10 @@
#{dateOfResignation,jdbcType=TIMESTAMP},
</if>
<if
test=
"isExecutive != null"
>
#{isExecutive,jdbcType=
BI
T},
#{isExecutive,jdbcType=
TINYIN
T},
</if>
<if
test=
"otherRoles != null"
>
#{otherRoles,jdbcType=
VARCHAR
},
#{otherRoles,jdbcType=
TINYINT
},
</if>
<if
test=
"isDelete != null"
>
#{isDelete,jdbcType=BIT},
...
...
@@ -265,10 +265,10 @@
date_of_resignation = #{record.dateOfResignation,jdbcType=TIMESTAMP},
</if>
<if
test=
"record.isExecutive != null"
>
is_executive = #{record.isExecutive,jdbcType=
BI
T},
is_executive = #{record.isExecutive,jdbcType=
TINYIN
T},
</if>
<if
test=
"record.otherRoles != null"
>
other_roles = #{record.otherRoles,jdbcType=
VARCHAR
},
other_roles = #{record.otherRoles,jdbcType=
TINYINT
},
</if>
<if
test=
"record.isDelete != null"
>
is_delete = #{record.isDelete,jdbcType=BIT},
...
...
@@ -296,8 +296,8 @@
residency = #{record.residency,jdbcType=VARCHAR},
date_of_appointment = #{record.dateOfAppointment,jdbcType=TIMESTAMP},
date_of_resignation = #{record.dateOfResignation,jdbcType=TIMESTAMP},
is_executive = #{record.isExecutive,jdbcType=
BI
T},
other_roles = #{record.otherRoles,jdbcType=
VARCHAR
},
is_executive = #{record.isExecutive,jdbcType=
TINYIN
T},
other_roles = #{record.otherRoles,jdbcType=
TINYINT
},
is_delete = #{record.isDelete,jdbcType=BIT},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
...
...
@@ -328,10 +328,10 @@
date_of_resignation = #{dateOfResignation,jdbcType=TIMESTAMP},
</if>
<if
test=
"isExecutive != null"
>
is_executive = #{isExecutive,jdbcType=
BI
T},
is_executive = #{isExecutive,jdbcType=
TINYIN
T},
</if>
<if
test=
"otherRoles != null"
>
other_roles = #{otherRoles,jdbcType=
VARCHAR
},
other_roles = #{otherRoles,jdbcType=
TINYINT
},
</if>
<if
test=
"isDelete != null"
>
is_delete = #{isDelete,jdbcType=BIT},
...
...
@@ -356,8 +356,8 @@
residency = #{residency,jdbcType=VARCHAR},
date_of_appointment = #{dateOfAppointment,jdbcType=TIMESTAMP},
date_of_resignation = #{dateOfResignation,jdbcType=TIMESTAMP},
is_executive = #{isExecutive,jdbcType=
BI
T},
other_roles = #{otherRoles,jdbcType=
VARCHAR
},
is_executive = #{isExecutive,jdbcType=
TINYIN
T},
other_roles = #{otherRoles,jdbcType=
TINYINT
},
is_delete = #{isDelete,jdbcType=BIT},
create_time = #{createTime,jdbcType=TIMESTAMP},
update_time = #{updateTime,jdbcType=TIMESTAMP}
...
...
atms-dao/src/main/resources/pwc/taxtech/atms/organization/dao/OrganizationHKMapper.xml
View file @
d861941a
This diff is collapsed.
Click to expand it.
atms-dao/src/main/resources/pwc/taxtech/atms/organization/dao/OrganizationShareholderMapper.xml
View file @
d861941a
...
...
@@ -9,9 +9,9 @@
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"entity_id"
jdbcType=
"BIGINT"
property=
"entityId"
/>
<result
column=
"investment_entity_id"
jdbcType=
"BIGINT"
property=
"investmentEntityId"
/>
<result
column=
"ownership_form"
jdbcType=
"
INTEGER
"
property=
"ownershipForm"
/>
<result
column=
"ownership_form"
jdbcType=
"
TINYINT
"
property=
"ownershipForm"
/>
<result
column=
"common_preferred"
jdbcType=
"BIT"
property=
"commonPreferred"
/>
<result
column=
"class_of_shares"
jdbcType=
"
VARCHAR
"
property=
"classOfShares"
/>
<result
column=
"class_of_shares"
jdbcType=
"
TINYINT
"
property=
"classOfShares"
/>
<result
column=
"voting_percentage"
jdbcType=
"VARCHAR"
property=
"votingPercentage"
/>
<result
column=
"is_delete"
jdbcType=
"BIT"
property=
"isDelete"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
...
...
@@ -147,7 +147,7 @@
voting_percentage, is_delete, create_time,
update_time)
values (#{id,jdbcType=BIGINT}, #{entityId,jdbcType=BIGINT}, #{investmentEntityId,jdbcType=BIGINT},
#{ownershipForm,jdbcType=
INTEGER}, #{commonPreferred,jdbcType=BIT}, #{classOfShares,jdbcType=VARCHAR
},
#{ownershipForm,jdbcType=
TINYINT}, #{commonPreferred,jdbcType=BIT}, #{classOfShares,jdbcType=TINYINT
},
#{votingPercentage,jdbcType=VARCHAR}, #{isDelete,jdbcType=BIT}, #{createTime,jdbcType=TIMESTAMP},
#{updateTime,jdbcType=TIMESTAMP})
</insert>
...
...
@@ -200,13 +200,13 @@
#{investmentEntityId,jdbcType=BIGINT},
</if>
<if
test=
"ownershipForm != null"
>
#{ownershipForm,jdbcType=
INTEGER
},
#{ownershipForm,jdbcType=
TINYINT
},
</if>
<if
test=
"commonPreferred != null"
>
#{commonPreferred,jdbcType=BIT},
</if>
<if
test=
"classOfShares != null"
>
#{classOfShares,jdbcType=
VARCHAR
},
#{classOfShares,jdbcType=
TINYINT
},
</if>
<if
test=
"votingPercentage != null"
>
#{votingPercentage,jdbcType=VARCHAR},
...
...
@@ -249,13 +249,13 @@
investment_entity_id = #{record.investmentEntityId,jdbcType=BIGINT},
</if>
<if
test=
"record.ownershipForm != null"
>
ownership_form = #{record.ownershipForm,jdbcType=
INTEGER
},
ownership_form = #{record.ownershipForm,jdbcType=
TINYINT
},
</if>
<if
test=
"record.commonPreferred != null"
>
common_preferred = #{record.commonPreferred,jdbcType=BIT},
</if>
<if
test=
"record.classOfShares != null"
>
class_of_shares = #{record.classOfShares,jdbcType=
VARCHAR
},
class_of_shares = #{record.classOfShares,jdbcType=
TINYINT
},
</if>
<if
test=
"record.votingPercentage != null"
>
voting_percentage = #{record.votingPercentage,jdbcType=VARCHAR},
...
...
@@ -283,9 +283,9 @@
set id = #{record.id,jdbcType=BIGINT},
entity_id = #{record.entityId,jdbcType=BIGINT},
investment_entity_id = #{record.investmentEntityId,jdbcType=BIGINT},
ownership_form = #{record.ownershipForm,jdbcType=
INTEGER
},
ownership_form = #{record.ownershipForm,jdbcType=
TINYINT
},
common_preferred = #{record.commonPreferred,jdbcType=BIT},
class_of_shares = #{record.classOfShares,jdbcType=
VARCHAR
},
class_of_shares = #{record.classOfShares,jdbcType=
TINYINT
},
voting_percentage = #{record.votingPercentage,jdbcType=VARCHAR},
is_delete = #{record.isDelete,jdbcType=BIT},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
...
...
@@ -308,13 +308,13 @@
investment_entity_id = #{investmentEntityId,jdbcType=BIGINT},
</if>
<if
test=
"ownershipForm != null"
>
ownership_form = #{ownershipForm,jdbcType=
INTEGER
},
ownership_form = #{ownershipForm,jdbcType=
TINYINT
},
</if>
<if
test=
"commonPreferred != null"
>
common_preferred = #{commonPreferred,jdbcType=BIT},
</if>
<if
test=
"classOfShares != null"
>
class_of_shares = #{classOfShares,jdbcType=
VARCHAR
},
class_of_shares = #{classOfShares,jdbcType=
TINYINT
},
</if>
<if
test=
"votingPercentage != null"
>
voting_percentage = #{votingPercentage,jdbcType=VARCHAR},
...
...
@@ -339,9 +339,9 @@
update organization_shareholder
set entity_id = #{entityId,jdbcType=BIGINT},
investment_entity_id = #{investmentEntityId,jdbcType=BIGINT},
ownership_form = #{ownershipForm,jdbcType=
INTEGER
},
ownership_form = #{ownershipForm,jdbcType=
TINYINT
},
common_preferred = #{commonPreferred,jdbcType=BIT},
class_of_shares = #{classOfShares,jdbcType=
VARCHAR
},
class_of_shares = #{classOfShares,jdbcType=
TINYINT
},
voting_percentage = #{votingPercentage,jdbcType=VARCHAR},
is_delete = #{isDelete,jdbcType=BIT},
create_time = #{createTime,jdbcType=TIMESTAMP},
...
...
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