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
ab99eea9
Commit
ab99eea9
authored
Oct 03, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[dev] replace periodModiieReportCell mapp entity example
parent
741e5827
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
7 additions
and
116 deletions
+7
-116
CellCalcInfoDto.java
...ain/java/pwc/taxtech/atms/dto/vatdto/CellCalcInfoDto.java
+2
-2
CellDataDto.java
...rc/main/java/pwc/taxtech/atms/dto/vatdto/CellDataDto.java
+2
-2
ReportServiceImpl.java
.../pwc/taxtech/atms/vat/service/impl/ReportServiceImpl.java
+2
-2
VatAbstractService.java
...pwc/taxtech/atms/vat/service/impl/VatAbstractService.java
+1
-1
ModifiedReportCellMapper.java
...va/pwc/taxtech/atms/vat/dao/ModifiedReportCellMapper.java
+0
-109
ModifiedReportCell.java
.../java/pwc/taxtech/atms/vat/entity/ModifiedReportCell.java
+0
-0
ModifiedReportCellExample.java
...wc/taxtech/atms/vat/entity/ModifiedReportCellExample.java
+0
-0
ModifiedReportCellMapper.xml
...ces/pwc/taxtech/atms/vat/dao/ModifiedReportCellMapper.xml
+0
-0
No files found.
atms-api/src/main/java/pwc/taxtech/atms/dto/vatdto/CellCalcInfoDto.java
View file @
ab99eea9
...
...
@@ -4,8 +4,8 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import
lombok.Getter
;
import
lombok.Setter
;
import
pwc.taxtech.atms.dto.CellTemplateConfigDto
;
import
pwc.taxtech.atms.vat.entity.ModifiedReportCell
;
import
pwc.taxtech.atms.vat.entity.PeriodCellTemplateConfig
;
import
pwc.taxtech.atms.vat.entity.PeriodModifiedReportCell
;
import
java.util.List
;
...
...
@@ -58,7 +58,7 @@ public class CellCalcInfoDto {
private
Boolean
isModified
;
//用户直接修改单元格的信息
private
ModifiedReportCell
modifiedReportCell
;
private
Period
ModifiedReportCell
modifiedReportCell
;
private
List
<
CellVoucherDatasourceDto
>
dataVoucherList
;
...
...
atms-api/src/main/java/pwc/taxtech/atms/dto/vatdto/CellDataDto.java
View file @
ab99eea9
...
...
@@ -4,7 +4,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import
lombok.Getter
;
import
lombok.Setter
;
import
pwc.taxtech.atms.dto.CellTemplateConfigDto
;
import
pwc.taxtech.atms.vat.entity.ModifiedReportCell
;
import
pwc.taxtech.atms.vat.entity.
Period
ModifiedReportCell
;
import
java.util.List
;
...
...
@@ -55,7 +55,7 @@ public class CellDataDto {
private
Boolean
isModified
;
//用户直接修改单元格的信息
private
ModifiedReportCell
modifiedReportCell
;
private
Period
ModifiedReportCell
modifiedReportCell
;
private
List
<
CellVoucherDatasourceDto
>
dataVoucherList
;
...
...
atms-api/src/main/java/pwc/taxtech/atms/vat/service/impl/ReportServiceImpl.java
View file @
ab99eea9
...
...
@@ -620,9 +620,9 @@ public class ReportServiceImpl extends VatAbstractService implements ReportServi
cellDataDtoList
.
add
(
cellDataDto
);
});
ModifiedReportCellExample
modifiedReportCellExample
=
new
ModifiedReportCellExample
();
PeriodModifiedReportCellExample
modifiedReportCellExample
=
new
Period
ModifiedReportCellExample
();
modifiedReportCellExample
.
createCriteria
().
andReportIdEqualTo
(
reportId
);
List
<
ModifiedReportCell
>
modifiedReportCellList
=
m
odifiedReportCellMapper
.
selectByExample
(
modifiedReportCellExample
);
List
<
PeriodModifiedReportCell
>
modifiedReportCellList
=
periodM
odifiedReportCellMapper
.
selectByExample
(
modifiedReportCellExample
);
modifiedReportCellList
.
forEach
(
mrc
->
{
Optional
<
CellDataDto
>
cdd
=
cellDataDtoList
.
stream
()
.
filter
(
cellDataDto
->
cellDataDto
.
getReportId
().
equals
(
mrc
.
getReportId
())
...
...
atms-api/src/main/java/pwc/taxtech/atms/vat/service/impl/VatAbstractService.java
View file @
ab99eea9
...
...
@@ -84,7 +84,7 @@ public class VatAbstractService {
@Autowired
public
PeriodCellDataMapper
periodCellDataMapper
;
@Autowired
public
ModifiedReportCellMapper
m
odifiedReportCellMapper
;
public
PeriodModifiedReportCellMapper
periodM
odifiedReportCellMapper
;
@Autowired
public
PeriodCellCommentMapper
periodCellCommentMapper
;
@Autowired
...
...
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/ModifiedReportCellMapper.java
deleted
100644 → 0
View file @
741e5827
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.ModifiedReportCell
;
import
pwc.taxtech.atms.vat.entity.ModifiedReportCellExample
;
@Mapper
public
interface
ModifiedReportCellMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
long
countByExample
(
ModifiedReportCellExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int
deleteByExample
(
ModifiedReportCellExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int
insert
(
ModifiedReportCell
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int
insertSelective
(
ModifiedReportCell
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
List
<
ModifiedReportCell
>
selectByExampleWithRowbounds
(
ModifiedReportCellExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
List
<
ModifiedReportCell
>
selectByExample
(
ModifiedReportCellExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
ModifiedReportCell
selectByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
ModifiedReportCell
record
,
@Param
(
"example"
)
ModifiedReportCellExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
ModifiedReportCell
record
,
@Param
(
"example"
)
ModifiedReportCellExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
ModifiedReportCell
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table TAX_PROJECT.MODIFIED_REPORT_CELL
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
ModifiedReportCell
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/entity/ModifiedReportCell.java
deleted
100644 → 0
View file @
741e5827
This diff is collapsed.
Click to expand it.
atms-dao/src/main/java/pwc/taxtech/atms/vat/entity/ModifiedReportCellExample.java
deleted
100644 → 0
View file @
741e5827
This diff is collapsed.
Click to expand it.
atms-dao/src/main/resources/pwc/taxtech/atms/vat/dao/ModifiedReportCellMapper.xml
deleted
100644 → 0
View file @
741e5827
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment