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
a7b3ae38
Commit
a7b3ae38
authored
Sep 11, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[bugfix] fixed the same dpo used in mapper and ervice
parent
97041c5b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
27 deletions
+1
-27
DataSourceExtendDto.java
...java/pwc/taxtech/atms/dto/vatdto/DataSourceExtendDto.java
+0
-26
DataSourceExtendsMapper.xml
.../taxtech/atms/vat/dao/extends/DataSourceExtendsMapper.xml
+1
-1
No files found.
atms-api/src/main/java/pwc/taxtech/atms/dto/vatdto/DataSourceExtendDto.java
deleted
100644 → 0
View file @
97041c5b
package
pwc
.
taxtech
.
atms
.
dto
.
vatdto
;
import
lombok.Getter
;
import
lombok.Setter
;
import
pwc.taxtech.atms.common.CommonUtils
;
import
pwc.taxtech.atms.vat.entity.DataSource
;
import
java.util.List
;
@Getter
@Setter
public
class
DataSourceExtendDto
extends
DataSource
{
private
Integer
operationType
;
private
Long
cellTemplateID
;
private
Long
cellDataID
;
private
List
<
String
>
items
;
private
DataSource
dataSource
;
private
Long
reportTemplateID
;
private
Integer
dataSourceType
;
public
DataSource
getDataSource
()
{
this
.
dataSource
=
new
DataSource
();
CommonUtils
.
copyProperties
(
this
,
dataSource
);
return
this
.
dataSource
;
}
}
atms-dao/src/main/resources/pwc/taxtech/atms/vat/dao/extends/DataSourceExtendsMapper.xml
View file @
a7b3ae38
...
@@ -66,7 +66,7 @@
...
@@ -66,7 +66,7 @@
DELETE c FROM cell_data c join report r on c.report_id=r.id where r.period = #{period,jdbcType=INTEGER};
DELETE c FROM cell_data c join report r on c.report_id=r.id where r.period = #{period,jdbcType=INTEGER};
DELETE FROM report WHERE period=#{period,jdbcType=INTEGER};
DELETE FROM report WHERE period=#{period,jdbcType=INTEGER};
</delete>
</delete>
<resultMap
id=
"DataSourceExtendDtoMap"
type=
"pwc.taxtech.atms.
dto.vatdt
o.DataSourceExtendDto"
>
<resultMap
id=
"DataSourceExtendDtoMap"
type=
"pwc.taxtech.atms.
vat.dp
o.DataSourceExtendDto"
>
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"type"
jdbcType=
"INTEGER"
property=
"type"
/>
<result
column=
"type"
jdbcType=
"INTEGER"
property=
"type"
/>
<result
column=
"name"
jdbcType=
"VARCHAR"
property=
"name"
/>
<result
column=
"name"
jdbcType=
"VARCHAR"
property=
"name"
/>
...
...
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