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
36231758
Commit
36231758
authored
Sep 28, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[dev] add vat fixed mapper
parent
f1e52b40
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
970 additions
and
89 deletions
+970
-89
PeriodCellCommentMapper.java
...ava/pwc/taxtech/atms/vat/dao/PeriodCellCommentMapper.java
+109
-0
PeriodCellDataMapper.java
...n/java/pwc/taxtech/atms/vat/dao/PeriodCellDataMapper.java
+109
-0
PeriodCellDataSourceMapper.java
.../pwc/taxtech/atms/vat/dao/PeriodCellDataSourceMapper.java
+109
-0
PeriodCellTemplateConfigMapper.java
.../taxtech/atms/vat/dao/PeriodCellTemplateConfigMapper.java
+14
-12
PeriodCellTemplateMapper.java
...va/pwc/taxtech/atms/vat/dao/PeriodCellTemplateMapper.java
+12
-12
PeriodDataSourceDetailMapper.java
...wc/taxtech/atms/vat/dao/PeriodDataSourceDetailMapper.java
+109
-0
PeriodDataSourceMapper.java
...java/pwc/taxtech/atms/vat/dao/PeriodDataSourceMapper.java
+109
-0
PeriodEnterpriseAccountMapper.java
...c/taxtech/atms/vat/dao/PeriodEnterpriseAccountMapper.java
+109
-0
PeriodFormulaBlockMapper.java
...va/pwc/taxtech/atms/vat/dao/PeriodFormulaBlockMapper.java
+16
-14
PeriodReportMapper.java
...ain/java/pwc/taxtech/atms/vat/dao/PeriodReportMapper.java
+109
-0
PeriodStandardAccountMapper.java
...pwc/taxtech/atms/vat/dao/PeriodStandardAccountMapper.java
+109
-0
PeriodTaxPayerReportRuleMapper.java
.../taxtech/atms/vat/dao/PeriodTaxPayerReportRuleMapper.java
+12
-12
PeriodTaxRuleSettingMapper.java
.../pwc/taxtech/atms/vat/dao/PeriodTaxRuleSettingMapper.java
+16
-13
PeriodTaxRuleSettingOrganizationMapper.java
.../atms/vat/dao/PeriodTaxRuleSettingOrganizationMapper.java
+12
-12
PeriodTemplateMapper.java
...n/java/pwc/taxtech/atms/vat/dao/PeriodTemplateMapper.java
+16
-14
No files found.
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodCellCommentMapper.java
0 → 100644
View file @
36231758
package
pwc
.
taxtech
.
atms
.
vat
.
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.MyVatMapper
;
import
pwc.taxtech.atms.vat.entity.PeriodCellComment
;
import
pwc.taxtech.atms.vat.entity.PeriodCellCommentExample
;
@Mapper
public
interface
PeriodCellCommentMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
long
countByExample
(
PeriodCellCommentExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
int
deleteByExample
(
PeriodCellCommentExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
int
insert
(
PeriodCellComment
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
int
insertSelective
(
PeriodCellComment
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
List
<
PeriodCellComment
>
selectByExampleWithRowbounds
(
PeriodCellCommentExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
List
<
PeriodCellComment
>
selectByExample
(
PeriodCellCommentExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
PeriodCellComment
selectByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
PeriodCellComment
record
,
@Param
(
"example"
)
PeriodCellCommentExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
PeriodCellComment
record
,
@Param
(
"example"
)
PeriodCellCommentExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
PeriodCellComment
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_COMMENT
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
PeriodCellComment
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodCellDataMapper.java
0 → 100644
View file @
36231758
package
pwc
.
taxtech
.
atms
.
vat
.
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.MyVatMapper
;
import
pwc.taxtech.atms.vat.entity.PeriodCellData
;
import
pwc.taxtech.atms.vat.entity.PeriodCellDataExample
;
@Mapper
public
interface
PeriodCellDataMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
long
countByExample
(
PeriodCellDataExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
int
deleteByExample
(
PeriodCellDataExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
int
insert
(
PeriodCellData
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
int
insertSelective
(
PeriodCellData
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
List
<
PeriodCellData
>
selectByExampleWithRowbounds
(
PeriodCellDataExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
List
<
PeriodCellData
>
selectByExample
(
PeriodCellDataExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
PeriodCellData
selectByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
PeriodCellData
record
,
@Param
(
"example"
)
PeriodCellDataExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
PeriodCellData
record
,
@Param
(
"example"
)
PeriodCellDataExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
PeriodCellData
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
PeriodCellData
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodCellDataSourceMapper.java
0 → 100644
View file @
36231758
package
pwc
.
taxtech
.
atms
.
vat
.
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.MyVatMapper
;
import
pwc.taxtech.atms.vat.entity.PeriodCellDataSource
;
import
pwc.taxtech.atms.vat.entity.PeriodCellDataSourceExample
;
@Mapper
public
interface
PeriodCellDataSourceMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
long
countByExample
(
PeriodCellDataSourceExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
int
deleteByExample
(
PeriodCellDataSourceExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
int
insert
(
PeriodCellDataSource
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
int
insertSelective
(
PeriodCellDataSource
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
List
<
PeriodCellDataSource
>
selectByExampleWithRowbounds
(
PeriodCellDataSourceExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
List
<
PeriodCellDataSource
>
selectByExample
(
PeriodCellDataSourceExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
PeriodCellDataSource
selectByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
PeriodCellDataSource
record
,
@Param
(
"example"
)
PeriodCellDataSourceExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
PeriodCellDataSource
record
,
@Param
(
"example"
)
PeriodCellDataSourceExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
PeriodCellDataSource
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_CELL_DATA_SOURCE
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
PeriodCellDataSource
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodCellTemplateConfigMapper.java
View file @
36231758
...
...
@@ -14,7 +14,7 @@ import java.util.List;
public
interface
PeriodCellTemplateConfigMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -22,7 +22,7 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -30,7 +30,7 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -38,7 +38,7 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -46,7 +46,7 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -54,7 +54,7 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -62,7 +62,7 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -70,7 +70,7 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -78,7 +78,7 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -86,7 +86,7 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -94,7 +94,7 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -102,7 +102,7 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE_CONFIG
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE_CONFIG
*
* @mbg.generated
*/
...
...
@@ -115,4 +115,5 @@ public interface PeriodCellTemplateConfigMapper extends MyVatMapper {
PeriodCellTemplateConfig
getConfigWithReportTemplateId
(
@Param
(
"reportTemplateId"
)
Long
reportTemplateId
,
@Param
(
"period"
)
Integer
period
,
@Param
(
"rowIndex"
)
int
rowIndex
,
@Param
(
"columnIndex"
)
int
columnIndex
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodCellTemplateMapper.java
View file @
36231758
...
...
@@ -14,7 +14,7 @@ import java.util.Map;
public
interface
PeriodCellTemplateMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -22,7 +22,7 @@ public interface PeriodCellTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -30,7 +30,7 @@ public interface PeriodCellTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -38,7 +38,7 @@ public interface PeriodCellTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -46,7 +46,7 @@ public interface PeriodCellTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -54,7 +54,7 @@ public interface PeriodCellTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -62,7 +62,7 @@ public interface PeriodCellTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -70,7 +70,7 @@ public interface PeriodCellTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -78,7 +78,7 @@ public interface PeriodCellTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -86,7 +86,7 @@ public interface PeriodCellTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -94,7 +94,7 @@ public interface PeriodCellTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -102,7 +102,7 @@ public interface PeriodCellTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_CELL_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_CELL_TEMPLATE
*
* @mbg.generated
*/
...
...
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodDataSourceDetailMapper.java
0 → 100644
View file @
36231758
package
pwc
.
taxtech
.
atms
.
vat
.
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.MyVatMapper
;
import
pwc.taxtech.atms.vat.entity.PeriodDataSourceDetail
;
import
pwc.taxtech.atms.vat.entity.PeriodDataSourceDetailExample
;
@Mapper
public
interface
PeriodDataSourceDetailMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
long
countByExample
(
PeriodDataSourceDetailExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
int
deleteByExample
(
PeriodDataSourceDetailExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
int
insert
(
PeriodDataSourceDetail
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
int
insertSelective
(
PeriodDataSourceDetail
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
List
<
PeriodDataSourceDetail
>
selectByExampleWithRowbounds
(
PeriodDataSourceDetailExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
List
<
PeriodDataSourceDetail
>
selectByExample
(
PeriodDataSourceDetailExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
PeriodDataSourceDetail
selectByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
PeriodDataSourceDetail
record
,
@Param
(
"example"
)
PeriodDataSourceDetailExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
PeriodDataSourceDetail
record
,
@Param
(
"example"
)
PeriodDataSourceDetailExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
PeriodDataSourceDetail
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE_DETAIL
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
PeriodDataSourceDetail
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodDataSourceMapper.java
0 → 100644
View file @
36231758
package
pwc
.
taxtech
.
atms
.
vat
.
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.MyVatMapper
;
import
pwc.taxtech.atms.vat.entity.PeriodDataSource
;
import
pwc.taxtech.atms.vat.entity.PeriodDataSourceExample
;
@Mapper
public
interface
PeriodDataSourceMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
long
countByExample
(
PeriodDataSourceExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
int
deleteByExample
(
PeriodDataSourceExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
int
insert
(
PeriodDataSource
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
int
insertSelective
(
PeriodDataSource
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
List
<
PeriodDataSource
>
selectByExampleWithRowbounds
(
PeriodDataSourceExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
List
<
PeriodDataSource
>
selectByExample
(
PeriodDataSourceExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
PeriodDataSource
selectByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
PeriodDataSource
record
,
@Param
(
"example"
)
PeriodDataSourceExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
PeriodDataSource
record
,
@Param
(
"example"
)
PeriodDataSourceExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
PeriodDataSource
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_DATA_SOURCE
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
PeriodDataSource
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodEnterpriseAccountMapper.java
0 → 100644
View file @
36231758
package
pwc
.
taxtech
.
atms
.
vat
.
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.MyVatMapper
;
import
pwc.taxtech.atms.vat.entity.PeriodEnterpriseAccount
;
import
pwc.taxtech.atms.vat.entity.PeriodEnterpriseAccountExample
;
@Mapper
public
interface
PeriodEnterpriseAccountMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
long
countByExample
(
PeriodEnterpriseAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
int
deleteByExample
(
PeriodEnterpriseAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
String
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
int
insert
(
PeriodEnterpriseAccount
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
int
insertSelective
(
PeriodEnterpriseAccount
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
List
<
PeriodEnterpriseAccount
>
selectByExampleWithRowbounds
(
PeriodEnterpriseAccountExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
List
<
PeriodEnterpriseAccount
>
selectByExample
(
PeriodEnterpriseAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
PeriodEnterpriseAccount
selectByPrimaryKey
(
String
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
PeriodEnterpriseAccount
record
,
@Param
(
"example"
)
PeriodEnterpriseAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
PeriodEnterpriseAccount
record
,
@Param
(
"example"
)
PeriodEnterpriseAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
PeriodEnterpriseAccount
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_ENTERPRISE_ACCOUNT
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
PeriodEnterpriseAccount
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodFormulaBlockMapper.java
View file @
36231758
package
pwc
.
taxtech
.
atms
.
vat
.
dao
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.session.RowBounds
;
...
...
@@ -8,11 +7,13 @@ import pwc.taxtech.atms.MyVatMapper;
import
pwc.taxtech.atms.vat.entity.PeriodFormulaBlock
;
import
pwc.taxtech.atms.vat.entity.PeriodFormulaBlockExample
;
import
java.util.List
;
@Mapper
public
interface
PeriodFormulaBlockMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
...
...
@@ -20,7 +21,7 @@ public interface PeriodFormulaBlockMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
...
...
@@ -28,7 +29,7 @@ public interface PeriodFormulaBlockMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
...
...
@@ -36,7 +37,7 @@ public interface PeriodFormulaBlockMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
...
...
@@ -44,7 +45,7 @@ public interface PeriodFormulaBlockMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
...
...
@@ -52,7 +53,7 @@ public interface PeriodFormulaBlockMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
...
...
@@ -60,7 +61,7 @@ public interface PeriodFormulaBlockMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
...
...
@@ -68,7 +69,7 @@ public interface PeriodFormulaBlockMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
...
...
@@ -76,7 +77,7 @@ public interface PeriodFormulaBlockMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
...
...
@@ -84,7 +85,7 @@ public interface PeriodFormulaBlockMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
...
...
@@ -92,7 +93,7 @@ public interface PeriodFormulaBlockMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
...
...
@@ -100,11 +101,11 @@ public interface PeriodFormulaBlockMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_FORMULA_BLOCK
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_FORMULA_BLOCK
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
PeriodFormulaBlock
record
);
void
updateReportId
(
@Param
(
"reportId"
)
Long
reportId
,
@Param
(
"cellTemplateConfigIds"
)
List
<
Long
>
cellTemplateConfigIds
,
@Param
(
"period"
)
Integer
period
);
void
updateReportId
(
@Param
(
"reportId"
)
Long
reportId
,
@Param
(
"cellTemplateConfigIds"
)
List
<
Long
>
cellTemplateConfigIds
,
@Param
(
"period"
)
Integer
period
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodReportMapper.java
0 → 100644
View file @
36231758
package
pwc
.
taxtech
.
atms
.
vat
.
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.MyVatMapper
;
import
pwc.taxtech.atms.vat.entity.PeriodReport
;
import
pwc.taxtech.atms.vat.entity.PeriodReportExample
;
@Mapper
public
interface
PeriodReportMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
long
countByExample
(
PeriodReportExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
int
deleteByExample
(
PeriodReportExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
int
insert
(
PeriodReport
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
int
insertSelective
(
PeriodReport
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
List
<
PeriodReport
>
selectByExampleWithRowbounds
(
PeriodReportExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
List
<
PeriodReport
>
selectByExample
(
PeriodReportExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
PeriodReport
selectByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
PeriodReport
record
,
@Param
(
"example"
)
PeriodReportExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
PeriodReport
record
,
@Param
(
"example"
)
PeriodReportExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
PeriodReport
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_REPORT
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
PeriodReport
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodStandardAccountMapper.java
0 → 100644
View file @
36231758
package
pwc
.
taxtech
.
atms
.
vat
.
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.MyVatMapper
;
import
pwc.taxtech.atms.vat.entity.PeriodStandardAccount
;
import
pwc.taxtech.atms.vat.entity.PeriodStandardAccountExample
;
@Mapper
public
interface
PeriodStandardAccountMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
long
countByExample
(
PeriodStandardAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
int
deleteByExample
(
PeriodStandardAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
String
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
int
insert
(
PeriodStandardAccount
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
int
insertSelective
(
PeriodStandardAccount
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
List
<
PeriodStandardAccount
>
selectByExampleWithRowbounds
(
PeriodStandardAccountExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
List
<
PeriodStandardAccount
>
selectByExample
(
PeriodStandardAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
PeriodStandardAccount
selectByPrimaryKey
(
String
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
PeriodStandardAccount
record
,
@Param
(
"example"
)
PeriodStandardAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
PeriodStandardAccount
record
,
@Param
(
"example"
)
PeriodStandardAccountExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
PeriodStandardAccount
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_ADMIN.PERIOD_STANDARD_ACCOUNT
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
PeriodStandardAccount
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodTaxPayerReportRuleMapper.java
View file @
36231758
...
...
@@ -12,7 +12,7 @@ import pwc.taxtech.atms.vat.entity.PeriodTaxPayerReportRuleExample;
public
interface
PeriodTaxPayerReportRuleMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
@@ -20,7 +20,7 @@ public interface PeriodTaxPayerReportRuleMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
@@ -28,7 +28,7 @@ public interface PeriodTaxPayerReportRuleMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
@@ -36,7 +36,7 @@ public interface PeriodTaxPayerReportRuleMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
@@ -44,7 +44,7 @@ public interface PeriodTaxPayerReportRuleMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
@@ -52,7 +52,7 @@ public interface PeriodTaxPayerReportRuleMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
@@ -60,7 +60,7 @@ public interface PeriodTaxPayerReportRuleMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
@@ -68,7 +68,7 @@ public interface PeriodTaxPayerReportRuleMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
@@ -76,7 +76,7 @@ public interface PeriodTaxPayerReportRuleMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
@@ -84,7 +84,7 @@ public interface PeriodTaxPayerReportRuleMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
@@ -92,7 +92,7 @@ public interface PeriodTaxPayerReportRuleMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
@@ -100,7 +100,7 @@ public interface PeriodTaxPayerReportRuleMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_PAYER_REPORT_RULE
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_PAYER_REPORT_RULE
*
* @mbg.generated
*/
...
...
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodTaxRuleSettingMapper.java
View file @
36231758
package
pwc
.
taxtech
.
atms
.
vat
.
dao
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.session.RowBounds
;
...
...
@@ -8,11 +7,13 @@ import pwc.taxtech.atms.MyVatMapper;
import
pwc.taxtech.atms.vat.entity.PeriodTaxRuleSetting
;
import
pwc.taxtech.atms.vat.entity.PeriodTaxRuleSettingExample
;
import
java.util.List
;
@Mapper
public
interface
PeriodTaxRuleSettingMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
...
...
@@ -20,7 +21,7 @@ public interface PeriodTaxRuleSettingMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
...
...
@@ -28,7 +29,7 @@ public interface PeriodTaxRuleSettingMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
...
...
@@ -36,7 +37,7 @@ public interface PeriodTaxRuleSettingMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
...
...
@@ -44,7 +45,7 @@ public interface PeriodTaxRuleSettingMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
...
...
@@ -52,7 +53,7 @@ public interface PeriodTaxRuleSettingMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
...
...
@@ -60,7 +61,7 @@ public interface PeriodTaxRuleSettingMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
...
...
@@ -68,7 +69,7 @@ public interface PeriodTaxRuleSettingMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
...
...
@@ -76,7 +77,7 @@ public interface PeriodTaxRuleSettingMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
...
...
@@ -84,7 +85,7 @@ public interface PeriodTaxRuleSettingMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
...
...
@@ -92,7 +93,7 @@ public interface PeriodTaxRuleSettingMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
...
...
@@ -100,12 +101,13 @@ public interface PeriodTaxRuleSettingMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TAX_RULE_SETTING
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TAX_RULE_SETTING
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
PeriodTaxRuleSetting
record
);
List
<
PeriodTaxRuleSetting
>
getTaxRuleSetting
(
@Param
(
"organizationId"
)
String
organizationId
,
@Param
(
"taxName"
)
String
taxName
,
@Param
(
"period"
)
int
period
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodTaxRuleSettingOrganizationMapper.java
View file @
36231758
...
...
@@ -12,7 +12,7 @@ import pwc.taxtech.atms.vat.entity.PeriodTaxRuleSettingOrganizationExample;
public
interface
PeriodTaxRuleSettingOrganizationMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
@@ -20,7 +20,7 @@ public interface PeriodTaxRuleSettingOrganizationMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
@@ -28,7 +28,7 @@ public interface PeriodTaxRuleSettingOrganizationMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
@@ -36,7 +36,7 @@ public interface PeriodTaxRuleSettingOrganizationMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
@@ -44,7 +44,7 @@ public interface PeriodTaxRuleSettingOrganizationMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
@@ -52,7 +52,7 @@ public interface PeriodTaxRuleSettingOrganizationMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
@@ -60,7 +60,7 @@ public interface PeriodTaxRuleSettingOrganizationMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
@@ -68,7 +68,7 @@ public interface PeriodTaxRuleSettingOrganizationMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
@@ -76,7 +76,7 @@ public interface PeriodTaxRuleSettingOrganizationMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
@@ -84,7 +84,7 @@ public interface PeriodTaxRuleSettingOrganizationMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
@@ -92,7 +92,7 @@ public interface PeriodTaxRuleSettingOrganizationMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
@@ -100,7 +100,7 @@ public interface PeriodTaxRuleSettingOrganizationMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT
.PERIOD_TAX_RULE_SETTING_ORG
* This method corresponds to the database table TAX_
ADMIN
.PERIOD_TAX_RULE_SETTING_ORG
*
* @mbg.generated
*/
...
...
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodTemplateMapper.java
View file @
36231758
package
pwc
.
taxtech
.
atms
.
vat
.
dao
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.session.RowBounds
;
...
...
@@ -9,11 +8,13 @@ import pwc.taxtech.atms.dpo.CellTemplatePerGroupDto;
import
pwc.taxtech.atms.vat.entity.PeriodTemplate
;
import
pwc.taxtech.atms.vat.entity.PeriodTemplateExample
;
import
java.util.List
;
@Mapper
public
interface
PeriodTemplateMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -21,7 +22,7 @@ public interface PeriodTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -29,7 +30,7 @@ public interface PeriodTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -37,7 +38,7 @@ public interface PeriodTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -45,7 +46,7 @@ public interface PeriodTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -53,7 +54,7 @@ public interface PeriodTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -61,7 +62,7 @@ public interface PeriodTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -69,7 +70,7 @@ public interface PeriodTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -77,7 +78,7 @@ public interface PeriodTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -85,7 +86,7 @@ public interface PeriodTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -93,7 +94,7 @@ public interface PeriodTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -101,7 +102,7 @@ public interface PeriodTemplateMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_
PROJECT.
PERIOD_TEMPLATE
* This method corresponds to the database table TAX_
ADMIN.
PERIOD_TEMPLATE
*
* @mbg.generated
*/
...
...
@@ -109,5 +110,5 @@ public interface PeriodTemplateMapper extends MyVatMapper {
void
batchInsert
(
List
<
PeriodTemplate
>
periodTemplateList
);
List
<
CellTemplatePerGroupDto
>
getCellTemplatePerGroup
(
@Param
(
"period"
)
Integer
period
,
@Param
(
"reportTemplateGroupID"
)
Long
reportTemplateGroupID
);
List
<
CellTemplatePerGroupDto
>
getCellTemplatePerGroup
(
@Param
(
"period"
)
Integer
period
,
@Param
(
"reportTemplateGroupID"
)
Long
reportTemplateGroupID
);
}
\ No newline at end of file
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