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
00ce6fbc
Commit
00ce6fbc
authored
May 18, 2018
by
eddie.woo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
50f6a44d
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
419 additions
and
0 deletions
+419
-0
AccountMappingManualMapper.java
...java/pwc/taxtech/atms/dao/AccountMappingManualMapper.java
+109
-0
AccountMappingManual.java
...n/java/pwc/taxtech/atms/entitiy/AccountMappingManual.java
+310
-0
AccountMappingManualExample.java
...pwc/taxtech/atms/entitiy/AccountMappingManualExample.java
+0
-0
AccountMappingManualMapper.xml
...urces/pwc/taxtech/atms/dao/AccountMappingManualMapper.xml
+0
-0
No files found.
atms-api/src/main/java/pwc/taxtech/atms/dao/AccountMappingManualMapper.java
0 → 100644
View file @
00ce6fbc
package
pwc
.
taxtech
.
atms
.
dao
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.session.RowBounds
;
import
pwc.taxtech.atms.MyMapper
;
import
pwc.taxtech.atms.entitiy.AccountMappingManual
;
import
pwc.taxtech.atms.entitiy.AccountMappingManualExample
;
@Mapper
public
interface
AccountMappingManualMapper
extends
MyMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
long
countByExample
(
AccountMappingManualExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int
deleteByExample
(
AccountMappingManualExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
String
ID
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int
insert
(
AccountMappingManual
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int
insertSelective
(
AccountMappingManual
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
List
<
AccountMappingManual
>
selectByExampleWithRowbounds
(
AccountMappingManualExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
List
<
AccountMappingManual
>
selectByExample
(
AccountMappingManualExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
AccountMappingManual
selectByPrimaryKey
(
String
ID
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
AccountMappingManual
record
,
@Param
(
"example"
)
AccountMappingManualExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
AccountMappingManual
record
,
@Param
(
"example"
)
AccountMappingManualExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
AccountMappingManual
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
AccountMappingManual
record
);
}
\ No newline at end of file
atms-api/src/main/java/pwc/taxtech/atms/entitiy/AccountMappingManual.java
0 → 100644
View file @
00ce6fbc
package
pwc
.
taxtech
.
atms
.
entitiy
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table AccountMappingManual
*
* @mbg.generated do_not_delete_during_merge
*/
public
class
AccountMappingManual
implements
Serializable
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.ID
*
* @mbg.generated
*/
private
String
ID
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.StandardCode
*
* @mbg.generated
*/
private
String
standardCode
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.FullName
*
* @mbg.generated
*/
private
String
fullName
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.EnterpriseAccountSetID
*
* @mbg.generated
*/
private
String
enterpriseAccountSetID
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.OrganizationID
*
* @mbg.generated
*/
private
String
organizationID
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.IndustryID
*
* @mbg.generated
*/
private
String
industryID
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.UpdateTime
*
* @mbg.generated
*/
private
Date
updateTime
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.UpdateBy
*
* @mbg.generated
*/
private
String
updateBy
;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
private
static
final
long
serialVersionUID
=
1L
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.ID
*
* @return the value of AccountMappingManual.ID
*
* @mbg.generated
*/
public
String
getID
()
{
return
ID
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.ID
*
* @param ID the value for AccountMappingManual.ID
*
* @mbg.generated
*/
public
void
setID
(
String
ID
)
{
this
.
ID
=
ID
==
null
?
null
:
ID
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.StandardCode
*
* @return the value of AccountMappingManual.StandardCode
*
* @mbg.generated
*/
public
String
getStandardCode
()
{
return
standardCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.StandardCode
*
* @param standardCode the value for AccountMappingManual.StandardCode
*
* @mbg.generated
*/
public
void
setStandardCode
(
String
standardCode
)
{
this
.
standardCode
=
standardCode
==
null
?
null
:
standardCode
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.FullName
*
* @return the value of AccountMappingManual.FullName
*
* @mbg.generated
*/
public
String
getFullName
()
{
return
fullName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.FullName
*
* @param fullName the value for AccountMappingManual.FullName
*
* @mbg.generated
*/
public
void
setFullName
(
String
fullName
)
{
this
.
fullName
=
fullName
==
null
?
null
:
fullName
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.EnterpriseAccountSetID
*
* @return the value of AccountMappingManual.EnterpriseAccountSetID
*
* @mbg.generated
*/
public
String
getEnterpriseAccountSetID
()
{
return
enterpriseAccountSetID
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.EnterpriseAccountSetID
*
* @param enterpriseAccountSetID the value for AccountMappingManual.EnterpriseAccountSetID
*
* @mbg.generated
*/
public
void
setEnterpriseAccountSetID
(
String
enterpriseAccountSetID
)
{
this
.
enterpriseAccountSetID
=
enterpriseAccountSetID
==
null
?
null
:
enterpriseAccountSetID
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.OrganizationID
*
* @return the value of AccountMappingManual.OrganizationID
*
* @mbg.generated
*/
public
String
getOrganizationID
()
{
return
organizationID
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.OrganizationID
*
* @param organizationID the value for AccountMappingManual.OrganizationID
*
* @mbg.generated
*/
public
void
setOrganizationID
(
String
organizationID
)
{
this
.
organizationID
=
organizationID
==
null
?
null
:
organizationID
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.IndustryID
*
* @return the value of AccountMappingManual.IndustryID
*
* @mbg.generated
*/
public
String
getIndustryID
()
{
return
industryID
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.IndustryID
*
* @param industryID the value for AccountMappingManual.IndustryID
*
* @mbg.generated
*/
public
void
setIndustryID
(
String
industryID
)
{
this
.
industryID
=
industryID
==
null
?
null
:
industryID
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.UpdateTime
*
* @return the value of AccountMappingManual.UpdateTime
*
* @mbg.generated
*/
public
Date
getUpdateTime
()
{
return
updateTime
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.UpdateTime
*
* @param updateTime the value for AccountMappingManual.UpdateTime
*
* @mbg.generated
*/
public
void
setUpdateTime
(
Date
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.UpdateBy
*
* @return the value of AccountMappingManual.UpdateBy
*
* @mbg.generated
*/
public
String
getUpdateBy
()
{
return
updateBy
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.UpdateBy
*
* @param updateBy the value for AccountMappingManual.UpdateBy
*
* @mbg.generated
*/
public
void
setUpdateBy
(
String
updateBy
)
{
this
.
updateBy
=
updateBy
==
null
?
null
:
updateBy
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
@Override
public
String
toString
()
{
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
getClass
().
getSimpleName
());
sb
.
append
(
" ["
);
sb
.
append
(
"Hash = "
).
append
(
hashCode
());
sb
.
append
(
", ID="
).
append
(
ID
);
sb
.
append
(
", standardCode="
).
append
(
standardCode
);
sb
.
append
(
", fullName="
).
append
(
fullName
);
sb
.
append
(
", enterpriseAccountSetID="
).
append
(
enterpriseAccountSetID
);
sb
.
append
(
", organizationID="
).
append
(
organizationID
);
sb
.
append
(
", industryID="
).
append
(
industryID
);
sb
.
append
(
", updateTime="
).
append
(
updateTime
);
sb
.
append
(
", updateBy="
).
append
(
updateBy
);
sb
.
append
(
"]"
);
return
sb
.
toString
();
}
}
\ No newline at end of file
atms-api/src/main/java/pwc/taxtech/atms/entitiy/AccountMappingManualExample.java
0 → 100644
View file @
00ce6fbc
This diff is collapsed.
Click to expand it.
atms-api/src/main/resources/pwc/taxtech/atms/dao/AccountMappingManualMapper.xml
0 → 100644
View file @
00ce6fbc
This diff is collapsed.
Click to expand it.
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