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
03ba4715
Commit
03ba4715
authored
Dec 26, 2024
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工行代扣接口 修改代码
parent
e5714752
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
10 deletions
+8
-10
IcbcWithholdRecordDto.java
.../amos/boot/module/hygf/api/dto/IcbcWithholdRecordDto.java
+7
-9
IcbcWithholdRecordMapper.xml
.../main/resources/mapper/mysql/IcbcWithholdRecordMapper.xml
+1
-1
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/dto/IcbcWithholdRecordDto.java
View file @
03ba4715
...
@@ -55,32 +55,30 @@ public class IcbcWithholdRecordDto extends BaseDto {
...
@@ -55,32 +55,30 @@ public class IcbcWithholdRecordDto extends BaseDto {
/**
/**
* 开户状态, 00-初始,01-开户中,02-开户成功,03-开户失败
* 开户状态, 00-初始,01-开户中,02-开户成功,03-开户失败
*/
*/
@ExcelProperty
(
value
=
"开户状态"
,
index
=
5
)
@ExcelIgnore
@ApiModelProperty
(
value
=
"开户状态, 00-初始,01-开户中,02-开户成功,03-开户失败"
)
@ApiModelProperty
(
value
=
"开户状态, 00-初始,01-开户中,02-开户成功,03-开户失败"
)
private
String
openAccountStatus
;
private
String
openAccountStatus
;
/**
/**
* 协议状态, 0-未生效,1-已生效,2-过期,3-作废,4-待短信确认
* 协议状态, 0-未生效,1-已生效,2-过期,3-作废,4-待短信确认
*/
*/
@ExcelProperty
(
value
=
"协议状态"
,
index
=
6
)
@ExcelIgnore
@ApiModelProperty
(
value
=
"协议状态, 0-未生效,1-已生效,2-过期,3-作废,4-待短信确认"
)
@ApiModelProperty
(
value
=
"协议状态, 0-未生效,1-已生效,2-过期,3-作废,4-待短信确认"
)
private
String
protocolStatus
;
private
String
protocolStatus
;
@ExcelProperty
(
value
=
"
协议状态"
,
index
=
7
)
@ExcelProperty
(
value
=
"
批次号"
,
index
=
5
)
@ApiModelProperty
(
value
=
"批次号"
)
@ApiModelProperty
(
value
=
"批次号"
)
private
String
batchNo
;
private
String
batchNo
;
@ExcelProperty
(
value
=
"项目编号"
,
index
=
8
)
@ExcelProperty
(
value
=
"项目编号"
,
index
=
6
)
@ApiModelProperty
(
value
=
"项目编号"
)
@ApiModelProperty
(
value
=
"项目编号"
)
private
String
projectId
;
private
String
projectId
;
@ExcelProperty
(
value
=
"付款金额
"
,
index
=
9
)
@ExcelProperty
(
value
=
"付款金额
(元)"
,
index
=
7
)
@ApiModelProperty
(
value
=
"付款金额"
)
@ApiModelProperty
(
value
=
"付款金额"
)
private
double
paymentAmount
;
private
double
paymentAmount
;
@ExcelProperty
(
value
=
"代扣状态"
,
index
=
10
)
@ExcelProperty
(
value
=
"代扣状态"
,
index
=
8
)
@ApiModelProperty
(
value
=
"代扣状态"
)
@ApiModelProperty
(
value
=
"代扣状态"
)
private
String
withholdStatus
;
private
String
withholdStatus
;
...
@@ -88,7 +86,7 @@ public class IcbcWithholdRecordDto extends BaseDto {
...
@@ -88,7 +86,7 @@ public class IcbcWithholdRecordDto extends BaseDto {
@ApiModelProperty
(
value
=
"上传时间"
)
@ApiModelProperty
(
value
=
"上传时间"
)
private
Date
withholdTime
;
private
Date
withholdTime
;
@ExcelProperty
(
value
=
"缴费时间"
,
index
=
11
)
@ExcelProperty
(
value
=
"缴费时间"
,
index
=
9
)
@ApiModelProperty
(
value
=
"缴费时间"
)
@ApiModelProperty
(
value
=
"缴费时间"
)
private
Date
paymentTime
;
private
Date
paymentTime
;
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/resources/mapper/mysql/IcbcWithholdRecordMapper.xml
View file @
03ba4715
...
@@ -121,7 +121,7 @@
...
@@ -121,7 +121,7 @@
AND re.amos_user_id = #{dto.amosUserId}
AND re.amos_user_id = #{dto.amosUserId}
</if>
</if>
<if
test=
"dto.batchNo != null and dto.batchNo != ''"
>
<if
test=
"dto.batchNo != null and dto.batchNo != ''"
>
AND re.batch_no
= #{dto.batchNo}
AND re.batch_no
like concat('%',#{dto.batchNo},'%')
</if>
</if>
<if
test=
"dto.withholdStatus != null and dto.withholdStatus != ''"
>
<if
test=
"dto.withholdStatus != null and dto.withholdStatus != ''"
>
AND re.withhold_status = #{dto.withholdStatus}
AND re.withhold_status = #{dto.withholdStatus}
...
...
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