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
a42ec78c
Commit
a42ec78c
authored
Jun 06, 2018
by
eddie.woo
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into dev_eddie
parents
09c53c7c
f959282c
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
87 additions
and
84 deletions
+87
-84
vatGeneratorConfig.xml
atms-api/etc/generator/vatGeneratorConfig.xml
+3
-3
VatEnterpriseAccountMapper.java
...a/pwc/taxtech/atms/vatDao/VatEnterpriseAccountMapper.java
+15
-14
VatOperationLogMapper.java
...n/java/pwc/taxtech/atms/vatDao/VatOperationLogMapper.java
+15
-14
VatStandardAccountMapper.java
...ava/pwc/taxtech/atms/vatDao/VatStandardAccountMapper.java
+15
-14
VatEnterpriseAccount.java
...ava/pwc/taxtech/atms/vatEntitiy/VatEnterpriseAccount.java
+1
-1
VatEnterpriseAccountExample.java
.../taxtech/atms/vatEntitiy/VatEnterpriseAccountExample.java
+2
-2
VatOperationLog.java
...ain/java/pwc/taxtech/atms/vatEntitiy/VatOperationLog.java
+1
-1
VatOperationLogExample.java
...a/pwc/taxtech/atms/vatEntitiy/VatOperationLogExample.java
+2
-2
VatStandardAccount.java
.../java/pwc/taxtech/atms/vatEntitiy/VatStandardAccount.java
+1
-1
VatStandardAccountExample.java
...wc/taxtech/atms/vatEntitiy/VatStandardAccountExample.java
+2
-2
VatEnterpriseAccountMapper.xml
...es/pwc/taxtech/atms/vatDao/VatEnterpriseAccountMapper.xml
+10
-10
VatOperationLogMapper.xml
...sources/pwc/taxtech/atms/vatDao/VatOperationLogMapper.xml
+10
-10
VatStandardAccountMapper.xml
...rces/pwc/taxtech/atms/vatDao/VatStandardAccountMapper.xml
+10
-10
No files found.
atms-api/etc/generator/vatGeneratorConfig.xml
View file @
a42ec78c
...
...
@@ -125,7 +125,7 @@
<property
name=
"ignoreQualifiersAtRuntime"
value=
"true"
/>
</table>
<table
tableName=
"EnterpriseAccount"
domainObjectName=
"EnterpriseAccount"
>
<table
tableName=
"EnterpriseAccount"
domainObjectName=
"
Vat
EnterpriseAccount"
>
<property
name=
"useActualColumnNames"
value=
"true"
/>
<property
name=
"ignoreQualifiersAtRuntime"
value=
"true"
/>
</table>
...
...
@@ -219,7 +219,7 @@
<columnOverride
column=
"Comment"
javaType=
"java.lang.String"
jdbcType=
"VARCHAR"
/>
</table>
<table
tableName=
"OperationLog"
domainObjectName=
"OperationLog"
>
<table
tableName=
"OperationLog"
domainObjectName=
"
Vat
OperationLog"
>
<property
name=
"useActualColumnNames"
value=
"true"
/>
<property
name=
"ignoreQualifiersAtRuntime"
value=
"true"
/>
<columnOverride
column=
"OperationObject"
javaType=
"java.lang.String"
jdbcType=
"VARCHAR"
/>
...
...
@@ -302,7 +302,7 @@
<property
name=
"ignoreQualifiersAtRuntime"
value=
"true"
/>
</table>
<table
tableName=
"StandardAccount"
domainObjectName=
"StandardAccount"
>
<table
tableName=
"StandardAccount"
domainObjectName=
"
Vat
StandardAccount"
>
<property
name=
"useActualColumnNames"
value=
"true"
/>
<property
name=
"ignoreQualifiersAtRuntime"
value=
"true"
/>
</table>
...
...
atms-api/src/main/java/pwc/taxtech/atms/vatDao/EnterpriseAccountMapper.java
→
atms-api/src/main/java/pwc/taxtech/atms/vatDao/
Vat
EnterpriseAccountMapper.java
View file @
a42ec78c
...
...
@@ -5,18 +5,18 @@ import org.apache.ibatis.annotations.Mapper;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.session.RowBounds
;
import
pwc.taxtech.atms.MyVatMapper
;
import
pwc.taxtech.atms.vatEntitiy.EnterpriseAccount
;
import
pwc.taxtech.atms.vatEntitiy.EnterpriseAccountExample
;
import
pwc.taxtech.atms.vatEntitiy.
Vat
EnterpriseAccount
;
import
pwc.taxtech.atms.vatEntitiy.
Vat
EnterpriseAccountExample
;
@Mapper
public
interface
EnterpriseAccountMapper
extends
MyVatMapper
{
public
interface
Vat
EnterpriseAccountMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
long
countByExample
(
EnterpriseAccountExample
example
);
long
countByExample
(
Vat
EnterpriseAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -24,7 +24,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
deleteByExample
(
EnterpriseAccountExample
example
);
int
deleteByExample
(
Vat
EnterpriseAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -40,7 +40,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
insert
(
EnterpriseAccount
record
);
int
insert
(
Vat
EnterpriseAccount
record
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -48,7 +48,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
insertSelective
(
EnterpriseAccount
record
);
int
insertSelective
(
Vat
EnterpriseAccount
record
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -56,7 +56,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
List
<
EnterpriseAccount
>
selectByExampleWithRowbounds
(
EnterpriseAccountExample
example
,
RowBounds
rowBounds
);
List
<
VatEnterpriseAccount
>
selectByExampleWithRowbounds
(
Vat
EnterpriseAccountExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -64,7 +64,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
List
<
EnterpriseAccount
>
selectByExample
(
EnterpriseAccountExample
example
);
List
<
VatEnterpriseAccount
>
selectByExample
(
Vat
EnterpriseAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -72,7 +72,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
EnterpriseAccount
selectByPrimaryKey
(
String
ID
);
Vat
EnterpriseAccount
selectByPrimaryKey
(
String
ID
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -80,7 +80,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
EnterpriseAccount
record
,
@Param
(
"example"
)
EnterpriseAccountExample
example
);
int
updateByExampleSelective
(
@Param
(
"record"
)
VatEnterpriseAccount
record
,
@Param
(
"example"
)
Vat
EnterpriseAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -88,7 +88,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
EnterpriseAccount
record
,
@Param
(
"example"
)
EnterpriseAccountExample
example
);
int
updateByExample
(
@Param
(
"record"
)
VatEnterpriseAccount
record
,
@Param
(
"example"
)
Vat
EnterpriseAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -96,7 +96,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
EnterpriseAccount
record
);
int
updateByPrimaryKeySelective
(
Vat
EnterpriseAccount
record
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -104,5 +104,5 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
EnterpriseAccount
record
);
int
updateByPrimaryKey
(
Vat
EnterpriseAccount
record
);
}
\ No newline at end of file
atms-api/src/main/java/pwc/taxtech/atms/vatDao/OperationLogMapper.java
→
atms-api/src/main/java/pwc/taxtech/atms/vatDao/
Vat
OperationLogMapper.java
View file @
a42ec78c
...
...
@@ -5,18 +5,18 @@ import org.apache.ibatis.annotations.Mapper;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.session.RowBounds
;
import
pwc.taxtech.atms.MyVatMapper
;
import
pwc.taxtech.atms.vatEntitiy.OperationLog
;
import
pwc.taxtech.atms.vatEntitiy.OperationLogExample
;
import
pwc.taxtech.atms.vatEntitiy.
Vat
OperationLog
;
import
pwc.taxtech.atms.vatEntitiy.
Vat
OperationLogExample
;
@Mapper
public
interface
OperationLogMapper
extends
MyVatMapper
{
public
interface
Vat
OperationLogMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
long
countByExample
(
OperationLogExample
example
);
long
countByExample
(
Vat
OperationLogExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -24,7 +24,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
deleteByExample
(
OperationLogExample
example
);
int
deleteByExample
(
Vat
OperationLogExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -40,7 +40,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
insert
(
OperationLog
record
);
int
insert
(
Vat
OperationLog
record
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -48,7 +48,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
insertSelective
(
OperationLog
record
);
int
insertSelective
(
Vat
OperationLog
record
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -56,7 +56,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
List
<
OperationLog
>
selectByExampleWithRowbounds
(
OperationLogExample
example
,
RowBounds
rowBounds
);
List
<
VatOperationLog
>
selectByExampleWithRowbounds
(
Vat
OperationLogExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -64,7 +64,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
List
<
OperationLog
>
selectByExample
(
OperationLogExample
example
);
List
<
VatOperationLog
>
selectByExample
(
Vat
OperationLogExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -72,7 +72,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
OperationLog
selectByPrimaryKey
(
String
ID
);
Vat
OperationLog
selectByPrimaryKey
(
String
ID
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -80,7 +80,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
OperationLog
record
,
@Param
(
"example"
)
OperationLogExample
example
);
int
updateByExampleSelective
(
@Param
(
"record"
)
VatOperationLog
record
,
@Param
(
"example"
)
Vat
OperationLogExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -88,7 +88,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
OperationLog
record
,
@Param
(
"example"
)
OperationLogExample
example
);
int
updateByExample
(
@Param
(
"record"
)
VatOperationLog
record
,
@Param
(
"example"
)
Vat
OperationLogExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -96,7 +96,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
OperationLog
record
);
int
updateByPrimaryKeySelective
(
Vat
OperationLog
record
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -104,5 +104,5 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
OperationLog
record
);
int
updateByPrimaryKey
(
Vat
OperationLog
record
);
}
\ No newline at end of file
atms-api/src/main/java/pwc/taxtech/atms/vatDao/StandardAccountMapper.java
→
atms-api/src/main/java/pwc/taxtech/atms/vatDao/
Vat
StandardAccountMapper.java
View file @
a42ec78c
...
...
@@ -5,18 +5,18 @@ import org.apache.ibatis.annotations.Mapper;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.session.RowBounds
;
import
pwc.taxtech.atms.MyVatMapper
;
import
pwc.taxtech.atms.vatEntitiy.StandardAccount
;
import
pwc.taxtech.atms.vatEntitiy.StandardAccountExample
;
import
pwc.taxtech.atms.vatEntitiy.
Vat
StandardAccount
;
import
pwc.taxtech.atms.vatEntitiy.
Vat
StandardAccountExample
;
@Mapper
public
interface
StandardAccountMapper
extends
MyVatMapper
{
public
interface
Vat
StandardAccountMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
long
countByExample
(
StandardAccountExample
example
);
long
countByExample
(
Vat
StandardAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -24,7 +24,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
deleteByExample
(
StandardAccountExample
example
);
int
deleteByExample
(
Vat
StandardAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -40,7 +40,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
insert
(
StandardAccount
record
);
int
insert
(
Vat
StandardAccount
record
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -48,7 +48,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
insertSelective
(
StandardAccount
record
);
int
insertSelective
(
Vat
StandardAccount
record
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -56,7 +56,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
List
<
StandardAccount
>
selectByExampleWithRowbounds
(
StandardAccountExample
example
,
RowBounds
rowBounds
);
List
<
VatStandardAccount
>
selectByExampleWithRowbounds
(
Vat
StandardAccountExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -64,7 +64,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
List
<
StandardAccount
>
selectByExample
(
StandardAccountExample
example
);
List
<
VatStandardAccount
>
selectByExample
(
Vat
StandardAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -72,7 +72,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
StandardAccount
selectByPrimaryKey
(
String
ID
);
Vat
StandardAccount
selectByPrimaryKey
(
String
ID
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -80,7 +80,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
StandardAccount
record
,
@Param
(
"example"
)
StandardAccountExample
example
);
int
updateByExampleSelective
(
@Param
(
"record"
)
VatStandardAccount
record
,
@Param
(
"example"
)
Vat
StandardAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -88,7 +88,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
StandardAccount
record
,
@Param
(
"example"
)
StandardAccountExample
example
);
int
updateByExample
(
@Param
(
"record"
)
VatStandardAccount
record
,
@Param
(
"example"
)
Vat
StandardAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -96,7 +96,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
StandardAccount
record
);
int
updateByPrimaryKeySelective
(
Vat
StandardAccount
record
);
/**
* This method was generated by MyBatis Generator.
...
...
@@ -104,5 +104,5 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
StandardAccount
record
);
int
updateByPrimaryKey
(
Vat
StandardAccount
record
);
}
\ No newline at end of file
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/EnterpriseAccount.java
→
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/
Vat
EnterpriseAccount.java
View file @
a42ec78c
...
...
@@ -10,7 +10,7 @@ import java.util.Date;
*
* @mbg.generated do_not_delete_during_merge
*/
public
class
EnterpriseAccount
implements
Serializable
{
public
class
Vat
EnterpriseAccount
implements
Serializable
{
/**
*
* This field was generated by MyBatis Generator.
...
...
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/EnterpriseAccountExample.java
→
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/
Vat
EnterpriseAccountExample.java
View file @
a42ec78c
...
...
@@ -4,7 +4,7 @@ import java.util.ArrayList;
import
java.util.Date
;
import
java.util.List
;
public
class
EnterpriseAccountExample
{
public
class
Vat
EnterpriseAccountExample
{
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table EnterpriseAccount
...
...
@@ -35,7 +35,7 @@ public class EnterpriseAccountExample {
*
* @mbg.generated
*/
public
EnterpriseAccountExample
()
{
public
Vat
EnterpriseAccountExample
()
{
oredCriteria
=
new
ArrayList
<
Criteria
>();
}
...
...
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/OperationLog.java
→
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/
Vat
OperationLog.java
View file @
a42ec78c
...
...
@@ -10,7 +10,7 @@ import java.util.Date;
*
* @mbg.generated do_not_delete_during_merge
*/
public
class
OperationLog
implements
Serializable
{
public
class
Vat
OperationLog
implements
Serializable
{
/**
*
* This field was generated by MyBatis Generator.
...
...
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/OperationLogExample.java
→
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/
Vat
OperationLogExample.java
View file @
a42ec78c
...
...
@@ -4,7 +4,7 @@ import java.util.ArrayList;
import
java.util.Date
;
import
java.util.List
;
public
class
OperationLogExample
{
public
class
Vat
OperationLogExample
{
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table OperationLog
...
...
@@ -35,7 +35,7 @@ public class OperationLogExample {
*
* @mbg.generated
*/
public
OperationLogExample
()
{
public
Vat
OperationLogExample
()
{
oredCriteria
=
new
ArrayList
<
Criteria
>();
}
...
...
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/StandardAccount.java
→
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/
Vat
StandardAccount.java
View file @
a42ec78c
...
...
@@ -9,7 +9,7 @@ import java.io.Serializable;
*
* @mbg.generated do_not_delete_during_merge
*/
public
class
StandardAccount
implements
Serializable
{
public
class
Vat
StandardAccount
implements
Serializable
{
/**
*
* This field was generated by MyBatis Generator.
...
...
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/StandardAccountExample.java
→
atms-api/src/main/java/pwc/taxtech/atms/vatEntitiy/
Vat
StandardAccountExample.java
View file @
a42ec78c
...
...
@@ -3,7 +3,7 @@ package pwc.taxtech.atms.vatEntitiy;
import
java.util.ArrayList
;
import
java.util.List
;
public
class
StandardAccountExample
{
public
class
Vat
StandardAccountExample
{
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table StandardAccount
...
...
@@ -34,7 +34,7 @@ public class StandardAccountExample {
*
* @mbg.generated
*/
public
StandardAccountExample
()
{
public
Vat
StandardAccountExample
()
{
oredCriteria
=
new
ArrayList
<
Criteria
>();
}
...
...
atms-api/src/main/resources/pwc/taxtech/atms/vatDao/EnterpriseAccountMapper.xml
→
atms-api/src/main/resources/pwc/taxtech/atms/vatDao/
Vat
EnterpriseAccountMapper.xml
View file @
a42ec78c
<?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=
"pwc.taxtech.atms.vatDao.EnterpriseAccountMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.vatEntitiy.EnterpriseAccount"
>
<mapper
namespace=
"pwc.taxtech.atms.vatDao.
Vat
EnterpriseAccountMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.vatEntitiy.
Vat
EnterpriseAccount"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -102,7 +102,7 @@
IsLeaf, IsActive, EnglishName, StdCode, EnterpriseAccountSetID, IsDummy, IsInVoucher,
CreatorID, UpdatorID, CreateTime, UpdateTime
</sql>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.EnterpriseAccountExample"
resultMap=
"BaseResultMap"
>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
EnterpriseAccountExample"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -138,7 +138,7 @@
delete from EnterpriseAccount
where ID = #{ID,jdbcType=VARCHAR}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.EnterpriseAccountExample"
>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
EnterpriseAccountExample"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -148,7 +148,7 @@
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.vatEntitiy.EnterpriseAccount"
>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
EnterpriseAccount"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -168,7 +168,7 @@
#{isInVoucher,jdbcType=INTEGER}, #{creatorID,jdbcType=VARCHAR}, #{updatorID,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP})
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.EnterpriseAccount"
>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
EnterpriseAccount"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -299,7 +299,7 @@
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.EnterpriseAccountExample"
resultType=
"java.lang.Long"
>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
EnterpriseAccountExample"
resultType=
"java.lang.Long"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -411,7 +411,7 @@
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.EnterpriseAccount"
>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
EnterpriseAccount"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -478,7 +478,7 @@
</set>
where ID = #{ID,jdbcType=VARCHAR}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.vatEntitiy.EnterpriseAccount"
>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
EnterpriseAccount"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -505,7 +505,7 @@
UpdateTime = #{updateTime,jdbcType=TIMESTAMP}
where ID = #{ID,jdbcType=VARCHAR}
</update>
<select
id=
"selectByExampleWithRowbounds"
parameterType=
"pwc.taxtech.atms.vatEntitiy.EnterpriseAccountExample"
resultMap=
"BaseResultMap"
>
<select
id=
"selectByExampleWithRowbounds"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
EnterpriseAccountExample"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
atms-api/src/main/resources/pwc/taxtech/atms/vatDao/OperationLogMapper.xml
→
atms-api/src/main/resources/pwc/taxtech/atms/vatDao/
Vat
OperationLogMapper.xml
View file @
a42ec78c
<?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=
"pwc.taxtech.atms.vatDao.OperationLogMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.vatEntitiy.OperationLog"
>
<mapper
namespace=
"pwc.taxtech.atms.vatDao.
Vat
OperationLogMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.vatEntitiy.
Vat
OperationLog"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -96,7 +96,7 @@
ID, OperationName, ModuleID, OperationObject, OperationType, OperationContent, OriginalState,
UpdateState, CreatorID, Comment, CreateTime, UpdateTime, IP, Period, ServiceType
</sql>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.OperationLogExample"
resultMap=
"BaseResultMap"
>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
OperationLogExample"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -132,7 +132,7 @@
delete from OperationLog
where ID = #{ID,jdbcType=VARCHAR}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.OperationLogExample"
>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
OperationLogExample"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -142,7 +142,7 @@
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.vatEntitiy.OperationLog"
>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
OperationLog"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -160,7 +160,7 @@
#{IP,jdbcType=VARCHAR}, #{period,jdbcType=INTEGER}, #{serviceType,jdbcType=INTEGER}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.OperationLog"
>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
OperationLog"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -261,7 +261,7 @@
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.OperationLogExample"
resultType=
"java.lang.Long"
>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
OperationLogExample"
resultType=
"java.lang.Long"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -353,7 +353,7 @@
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.OperationLog"
>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
OperationLog"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -405,7 +405,7 @@
</set>
where ID = #{ID,jdbcType=VARCHAR}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.vatEntitiy.OperationLog"
>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
OperationLog"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -427,7 +427,7 @@
ServiceType = #{serviceType,jdbcType=INTEGER}
where ID = #{ID,jdbcType=VARCHAR}
</update>
<select
id=
"selectByExampleWithRowbounds"
parameterType=
"pwc.taxtech.atms.vatEntitiy.OperationLogExample"
resultMap=
"BaseResultMap"
>
<select
id=
"selectByExampleWithRowbounds"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
OperationLogExample"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
atms-api/src/main/resources/pwc/taxtech/atms/vatDao/StandardAccountMapper.xml
→
atms-api/src/main/resources/pwc/taxtech/atms/vatDao/
Vat
StandardAccountMapper.xml
View file @
a42ec78c
<?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=
"pwc.taxtech.atms.vatDao.StandardAccountMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.vatEntitiy.StandardAccount"
>
<mapper
namespace=
"pwc.taxtech.atms.vatDao.
Vat
StandardAccountMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.vatEntitiy.
Vat
StandardAccount"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -95,7 +95,7 @@
ID, Code, Name, ParentCode, FullName, AcctProp, SubProp, AcctLevel, Direction, IsLeaf,
RuleType, IsActive, EnglishName, IndustryID
</sql>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.StandardAccountExample"
resultMap=
"BaseResultMap"
>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
StandardAccountExample"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -131,7 +131,7 @@
delete from StandardAccount
where ID = #{ID,jdbcType=VARCHAR}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.StandardAccountExample"
>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
StandardAccountExample"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -141,7 +141,7 @@
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.vatEntitiy.StandardAccount"
>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
StandardAccount"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -157,7 +157,7 @@
#{isLeaf,jdbcType=SMALLINT}, #{ruleType,jdbcType=INTEGER}, #{isActive,jdbcType=SMALLINT},
#{englishName,jdbcType=VARCHAR}, #{industryID,jdbcType=VARCHAR})
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.StandardAccount"
>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
StandardAccount"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -252,7 +252,7 @@
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.StandardAccountExample"
resultType=
"java.lang.Long"
>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
StandardAccountExample"
resultType=
"java.lang.Long"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -340,7 +340,7 @@
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.StandardAccount"
>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
StandardAccount"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -389,7 +389,7 @@
</set>
where ID = #{ID,jdbcType=VARCHAR}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.vatEntitiy.StandardAccount"
>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
StandardAccount"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
@@ -410,7 +410,7 @@
IndustryID = #{industryID,jdbcType=VARCHAR}
where ID = #{ID,jdbcType=VARCHAR}
</update>
<select
id=
"selectByExampleWithRowbounds"
parameterType=
"pwc.taxtech.atms.vatEntitiy.StandardAccountExample"
resultMap=
"BaseResultMap"
>
<select
id=
"selectByExampleWithRowbounds"
parameterType=
"pwc.taxtech.atms.vatEntitiy.
Vat
StandardAccountExample"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
...
...
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