Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
indicators
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhangkb
indicators
Commits
8567f23c
Commit
8567f23c
authored
Dec 17, 2020
by
hzc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改驳回消息详情
parent
7e3f9a2b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
ReportTwoMapper.java
...obile/indicators/model/mapper/report/ReportTwoMapper.java
+1
-1
IndicatorsReportService.java
...le/indicators/service/report/IndicatorsReportService.java
+1
-1
ReportTwoMapper.xml
src/main/resources/mybatis/mapping/ReportTwoMapper.xml
+2
-1
No files found.
src/main/java/com/keymobile/indicators/model/mapper/report/ReportTwoMapper.java
View file @
8567f23c
...
@@ -14,7 +14,7 @@ import tk.mybatis.mapper.common.BaseMapper;
...
@@ -14,7 +14,7 @@ import tk.mybatis.mapper.common.BaseMapper;
public
interface
ReportTwoMapper
extends
BaseMapper
<
IndicatorsReportTwo
>{
public
interface
ReportTwoMapper
extends
BaseMapper
<
IndicatorsReportTwo
>{
public
IndicatorsReportTwo
getDataByParam
(
@Param
(
"indId"
)
String
indId
,
public
IndicatorsReportTwo
getDataByParam
(
@Param
(
"indId"
)
String
indId
,
@Param
(
"date"
)
Integer
date
,
@Param
(
"type"
)
String
type
,
@Param
(
"code"
)
String
code
,
@Param
(
"date"
)
Integer
date
,
@Param
(
"type"
)
String
type
,
@Param
(
"code"
)
String
code
,
@Param
(
"compareCatalog"
)
String
compareCatalog
);
@Param
(
"compareCatalog"
)
String
compareCatalog
,
@Param
(
"compareUnitId"
)
String
compareUnitId
);
public
void
batchSave
(
@Param
(
"datas"
)
List
<
IndicatorsReportTwo
>
datas
);
public
void
batchSave
(
@Param
(
"datas"
)
List
<
IndicatorsReportTwo
>
datas
);
...
...
src/main/java/com/keymobile/indicators/service/report/IndicatorsReportService.java
View file @
8567f23c
...
@@ -495,7 +495,7 @@ public class IndicatorsReportService {
...
@@ -495,7 +495,7 @@ public class IndicatorsReportService {
log
.
info
(
"查报表二数据参数:indId={},date={}, type={}, code={}, compareCatalog={}"
,
indId
,
log
.
info
(
"查报表二数据参数:indId={},date={}, type={}, code={}, compareCatalog={}"
,
indId
,
date
,
type
,
code
,
compareCatalog
);
date
,
type
,
code
,
compareCatalog
);
IndicatorsReportTwo
indReportData
=
reportTwoMapper
.
getDataByParam
(
indId
,
IndicatorsReportTwo
indReportData
=
reportTwoMapper
.
getDataByParam
(
indId
,
date
,
type
,
code
,
compareCatalog
);
date
,
type
,
code
,
compareCatalog
,
compareUnitId
);
if
(
indReportData
==
null
)
{
if
(
indReportData
==
null
)
{
indReportData
=
new
IndicatorsReportTwo
();
indReportData
=
new
IndicatorsReportTwo
();
}
}
...
...
src/main/resources/mybatis/mapping/ReportTwoMapper.xml
View file @
8567f23c
...
@@ -9,7 +9,8 @@
...
@@ -9,7 +9,8 @@
compare_date = #{date} and
compare_date = #{date} and
compare_type = #{type} and
compare_type = #{type} and
code = #{code} and
code = #{code} and
compare_catalog = #{compareCatalog}
compare_catalog = #{compareCatalog} and
compare_unit_id = #{compareUnitId}
</select>
</select>
<insert
id=
"batchSave"
parameterType=
"java.util.List"
>
<insert
id=
"batchSave"
parameterType=
"java.util.List"
>
...
...
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