Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-zx-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
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
Jobs
Commits
Open sidebar
项目统一框架
一体化_户用光伏项目代码
amos-boot-zx-biz
Commits
47531333
Commit
47531333
authored
Dec 23, 2024
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工行代扣bug修复
parent
6129e836
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
6 deletions
+10
-6
IcbcWithholdMapper.java
.../amos/boot/module/hygf/api/mapper/IcbcWithholdMapper.java
+1
-1
HygfIcbcRecordMapper.xml
.../src/main/resources/mapper/mysql/HygfIcbcRecordMapper.xml
+1
-1
IcbcWithholdMapper.xml
...pi/src/main/resources/mapper/mysql/IcbcWithholdMapper.xml
+4
-1
IcbcWithholdController.java
...ot/module/hygf/biz/controller/IcbcWithholdController.java
+2
-1
IcbcWithholdServiceImpl.java
...module/hygf/biz/service/impl/IcbcWithholdServiceImpl.java
+2
-2
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/mapper/IcbcWithholdMapper.java
View file @
47531333
...
@@ -14,5 +14,5 @@ import java.util.List;
...
@@ -14,5 +14,5 @@ import java.util.List;
*/
*/
public
interface
IcbcWithholdMapper
extends
BaseMapper
<
IcbcWithhold
>
{
public
interface
IcbcWithholdMapper
extends
BaseMapper
<
IcbcWithhold
>
{
public
List
<
IcbcWithholdDto
>
queryForIcbcWithholdPage
(
String
uploader
,
String
uploadStartTime
,
String
uploadEndTime
,
String
uploadStatus
,
String
confirmator
,
String
confirmationStartTime
,
String
confirmationEndTime
,
String
desc
);
public
List
<
IcbcWithholdDto
>
queryForIcbcWithholdPage
(
String
uploader
,
String
uploadStartTime
,
String
uploadEndTime
,
String
uploadStatus
,
String
confirmator
,
String
confirmationStartTime
,
String
confirmationEndTime
,
String
desc
,
String
withholdStatus
);
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/resources/mapper/mysql/HygfIcbcRecordMapper.xml
View file @
47531333
...
@@ -161,7 +161,7 @@
...
@@ -161,7 +161,7 @@
<select
id=
"exportTotal"
resultType=
"com.yeejoin.amos.boot.module.hygf.api.dto.HygfIcbcRecordExportDTO"
>
<select
id=
"exportTotal"
resultType=
"com.yeejoin.amos.boot.module.hygf.api.dto.HygfIcbcRecordExportDTO"
>
SELECT
SELECT
MAX(ph.owners_name) AS custName,
MAX(ph.owners_name) AS custName,
MAX(ph.telephone) AS
idCard
,
MAX(ph.telephone) AS
phone
,
MAX(ph.id_card) AS idCard,
MAX(ph.id_card) AS idCard,
MAX(ph.regional_companies_name) AS regionalCompaniesName,
MAX(ph.regional_companies_name) AS regionalCompaniesName,
MAX(re.medium_id) AS mediumId,
MAX(re.medium_id) AS mediumId,
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/resources/mapper/mysql/IcbcWithholdMapper.xml
View file @
47531333
...
@@ -19,11 +19,14 @@
...
@@ -19,11 +19,14 @@
<if
test=
"uploadStatus != null and uploadStatus != ''"
>
<if
test=
"uploadStatus != null and uploadStatus != ''"
>
and upload_status = #{uploadStatus}
and upload_status = #{uploadStatus}
</if>
</if>
<if
test=
"withholdStatus != null and withholdStatus != ''"
>
and withhold_status = #{withholdStatus}
</if>
<if
test=
"confirmator != null and confirmator != ''"
>
<if
test=
"confirmator != null and confirmator != ''"
>
and confirmator like concat('%',#{confirmator},'%')
and confirmator like concat('%',#{confirmator},'%')
</if>
</if>
<if
test=
"desc != null and desc != ''"
>
<if
test=
"desc != null and desc != ''"
>
and
uploader
like concat('%',#{desc},'%')
and
content
like concat('%',#{desc},'%')
</if>
</if>
<if
test=
"confirmationStartTime != null and confirmationStartTime != ''"
>
<if
test=
"confirmationStartTime != null and confirmationStartTime != ''"
>
and confirmation_time > #{confirmationStartTime}
and confirmation_time > #{confirmationStartTime}
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/controller/IcbcWithholdController.java
View file @
47531333
...
@@ -115,9 +115,10 @@ public class IcbcWithholdController extends BaseController {
...
@@ -115,9 +115,10 @@ public class IcbcWithholdController extends BaseController {
@RequestParam
(
value
=
"confirmator"
,
required
=
false
)
String
confirmator
,
@RequestParam
(
value
=
"confirmator"
,
required
=
false
)
String
confirmator
,
@RequestParam
(
value
=
"confirmationStartTime"
,
required
=
false
)
String
confirmationStartTime
,
@RequestParam
(
value
=
"confirmationStartTime"
,
required
=
false
)
String
confirmationStartTime
,
@RequestParam
(
value
=
"confirmationEndTime"
,
required
=
false
)
String
confirmationEndTime
,
@RequestParam
(
value
=
"confirmationEndTime"
,
required
=
false
)
String
confirmationEndTime
,
@RequestParam
(
value
=
"withholdStatus"
,
required
=
false
)
String
withholdStatus
,
@RequestParam
(
value
=
"desc"
,
required
=
false
)
String
desc
)
{
@RequestParam
(
value
=
"desc"
,
required
=
false
)
String
desc
)
{
return
ResponseHelper
.
buildResponse
(
icbcWithholdServiceImpl
.
queryForIcbcWithholdPage
(
current
,
size
,
uploader
,
uploadStartTime
,
uploadEndTime
,
uploadStatus
,
confirmator
,
confirmationStartTime
,
confirmationEndTime
,
desc
));
return
ResponseHelper
.
buildResponse
(
icbcWithholdServiceImpl
.
queryForIcbcWithholdPage
(
current
,
size
,
uploader
,
uploadStartTime
,
uploadEndTime
,
uploadStatus
,
confirmator
,
confirmationStartTime
,
confirmationEndTime
,
desc
,
withholdStatus
));
}
/**
}
/**
* 列表分页查询
* 列表分页查询
*
*
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/IcbcWithholdServiceImpl.java
View file @
47531333
...
@@ -568,10 +568,10 @@ public class IcbcWithholdServiceImpl extends BaseService<IcbcWithholdDto,IcbcWit
...
@@ -568,10 +568,10 @@ public class IcbcWithholdServiceImpl extends BaseService<IcbcWithholdDto,IcbcWit
}
}
public
Page
<
IcbcWithholdDto
>
queryForIcbcWithholdPage
(
int
current
,
int
size
,
String
uploader
,
String
uploadStartTime
,
String
uploadEndTime
,
String
uploadStatus
,
String
confirmator
,
String
confirmationStartTime
,
String
confirmationEndTime
,
String
desc
)
{
public
Page
<
IcbcWithholdDto
>
queryForIcbcWithholdPage
(
int
current
,
int
size
,
String
uploader
,
String
uploadStartTime
,
String
uploadEndTime
,
String
uploadStatus
,
String
confirmator
,
String
confirmationStartTime
,
String
confirmationEndTime
,
String
desc
,
String
withholdStatus
)
{
Page
<
IcbcWithholdDto
>
page
=
new
Page
<>();
Page
<
IcbcWithholdDto
>
page
=
new
Page
<>();
PageHelper
.
startPage
(
current
,
size
);
PageHelper
.
startPage
(
current
,
size
);
List
<
IcbcWithholdDto
>
icbcWithholdDtos
=
this
.
getBaseMapper
().
queryForIcbcWithholdPage
(
uploader
,
uploadStartTime
,
uploadEndTime
,
uploadStatus
,
confirmator
,
confirmationStartTime
,
confirmationEndTime
,
desc
);
List
<
IcbcWithholdDto
>
icbcWithholdDtos
=
this
.
getBaseMapper
().
queryForIcbcWithholdPage
(
uploader
,
uploadStartTime
,
uploadEndTime
,
uploadStatus
,
confirmator
,
confirmationStartTime
,
confirmationEndTime
,
desc
,
withholdStatus
);
PageInfo
<
IcbcWithholdDto
>
pageInfo
=
new
PageInfo
<>(
icbcWithholdDtos
);
PageInfo
<
IcbcWithholdDto
>
pageInfo
=
new
PageInfo
<>(
icbcWithholdDtos
);
page
.
setSize
(
pageInfo
.
getSize
());
page
.
setSize
(
pageInfo
.
getSize
());
...
...
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